/* ========================================
   Vidhi Niyam - Modern Unique Design
   Premium UI/UX with Bento Grid & Glassmorphism
   ======================================== */

:root {
  /* Modern Black & Gold Palette */
  --primary: #D4AF37;
  --primary-dark: #AA7A00;
  --primary-light: #F3E5AB;
  --accent: #E5C158;
  --accent-dark: #B8860B;
  --warning: #F59E0B;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #888888;
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-tertiary: #1A1A1A;
  --border-light: #333333;
  --border-medium: #D4AF37;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #AA7A00 100%);
  --gradient-hero: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #F3E5AB 100%);
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --xs: 8px;
  --sm: 16px;
  --md: 24px;
  --lg: 32px;
  --xl: 48px;
  --2xl: 64px;
  --3xl: 96px;
  --4xl: 128px;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows - Embossing */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(212, 175, 55, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(212, 175, 55, 0.4);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Max Width */
  --max-width: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove blue browser focus ring on click; keep for keyboard nav */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

/* Background Gradient Animation */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container,
.hero-container,
.trusted-container,
.bento-container,
.process-container,
.pricing-container,
.testimonials-container,
.faq-container,
.cta-container,
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sm);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-base);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--xs);
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: invert(73%) sepia(50%) saturate(737%) hue-rotate(5deg) brightness(96%) contrast(85%) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8)) drop-shadow(0 -1px 1px rgba(212, 175, 55, 0.4));
}

.nav-menu {
  display: none;
  gap: var(--md);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
  outline: none;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary);
  outline: none;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: var(--sm);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}

.btn-nav {
  background: var(--gradient-hero);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--xs);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--4xl) var(--sm) var(--3xl);
  position: relative;
  overflow: hidden;
  background: url('../images/hero-bg.png') center center / cover no-repeat;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(0, 0, 0, 0.90) 100%);
  z-index: 1;
}

.hero-container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--xs);
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--md);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description {
  font-size: 18px;
  color: rgba(212, 175, 55, 0.95);
  max-width: 600px;
  margin: 0 auto var(--lg);
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  margin-bottom: var(--xl);
}

.btn-primary-modern {
  background: var(--gradient-hero);
  color: #0A0A0A;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--xs);
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.btn-secondary-modern {
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-base);
}

.btn-secondary-modern:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--md);
  margin-top: var(--xl);
  padding-top: var(--lg);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.3);
}

.hero-stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 14px;
  color: rgba(212, 175, 55, 0.9);
  margin-top: 4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.deco-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-hero);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.deco-2 {
  width: 400px;
  height: 400px;
  background: var(--gradient-accent);
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.deco-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  top: 50%;
  left: 50%;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-30px, 30px); }
}

/* Trusted Section */
.trusted-section {
  padding: var(--xl) 0;
  background: var(--bg-secondary);
}

.trusted-label {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--md);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sm);
}

.logo-placeholder {
  background: var(--bg-secondary);
  padding: var(--sm);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

/* Section Headers */
.section-header-modern {
  text-align: center;
  margin-bottom: var(--2xl);
}

.section-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sm);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--sm);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Bento Grid */
.services-bento {
  padding: var(--3xl) 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--md);
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  background: var(--bg-secondary);
  padding: var(--xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  background: linear-gradient(145deg, #151515 0%, #0A0A0A 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: inset 0 1px 1px rgba(212, 175, 55, 0.5), 0 4px 15px rgba(0,0,0,0.5);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.bento-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--transition-base);
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(212, 175, 55, 0.2), inset 0 1px 2px rgba(212, 175, 55, 0.8);
  border-color: var(--primary);
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.bento-card:hover::after {
  top: -30%;
  right: -30%;
}

.bento-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.card-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: var(--lg);
  transition: var(--transition-base);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15), inset 0 1px 1px rgba(212, 175, 55, 0.3);
}

.bento-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25), inset 0 1px 2px rgba(212, 175, 55, 0.5);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--xs);
  color: var(--text-primary);
}

.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--md);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sm);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}



/* Process Section */
.process-section {
  padding: var(--3xl) 0;
  background: var(--bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lg);
}

.process-step {
  background: var(--bg-secondary);
  padding: var(--lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  color: rgba(99, 102, 241, 0.1);
  margin-bottom: var(--sm);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--xs);
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--md);
  line-height: 1.6;
}

.step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--xs);
}

.step-features li {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Pricing Cards */
.pricing-modern {
  padding: var(--3xl) 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--md);
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-secondary);
  padding: var(--lg);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-light);
  transition: var(--transition-base);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-hero);
  color: var(--text-primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--md);
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-amount {
  text-align: center;
  margin-bottom: var(--md);
}

.currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  vertical-align: top;
}

.price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--lg);
  display: flex;
  flex-direction: column;
  gap: var(--xs);
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: var(--xs) 0;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  transition: var(--transition-base);
}

.btn-pricing:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-pricing.featured {
  background: var(--gradient-hero);
  color: var(--text-primary);
  border: none;
}

.btn-pricing.featured:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Testimonials */
.testimonials-modern {
  padding: var(--3xl) 0;
  background: var(--bg-secondary);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--md);
}

.testimonial-item {
  background: var(--bg-secondary);
  padding: var(--lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.testimonial-stars {
  color: var(--warning);
  font-size: 20px;
  margin-bottom: var(--sm);
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: var(--md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sm);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.author-details {
  flex: 1;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.author-title {
  font-size: 12px;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-modern {
  padding: var(--3xl) 0;
}

.faq-list-modern {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-modern {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sm);
  overflow: hidden;
  background: var(--bg-secondary);
}

.faq-question-modern {
  width: 100%;
  padding: var(--md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-question-modern:hover {
  background: var(--bg-secondary);
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition-base);
}

.faq-item-modern.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item-modern.active .faq-answer-modern {
  max-height: 300px;
}

.faq-answer-modern p {
  padding: 0 var(--md) var(--md);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: var(--3xl) 0;
}

.cta-card {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-glow);
  padding: var(--2xl) var(--lg);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: var(--sm);
  position: relative;
}

.cta-text {
  font-size: 16px;
  margin-bottom: var(--lg);
  opacity: 0.95;
  position: relative;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  margin-bottom: var(--md);
  position: relative;
}

.btn-cta-primary {
  background: var(--bg-secondary);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--xs);
  transition: var(--transition-base);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-cta-secondary {
  background: rgba(212, 175, 55, 0.2);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-base);
}

.btn-cta-secondary:hover {
  background: rgba(212, 175, 55, 0.3);
}

.cta-trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--xs);
  font-size: 14px;
  opacity: 0.9;
  position: relative;
}

/* Footer */
.footer-modern {
  background: var(--text-primary);
  color: var(--text-primary);
  padding: var(--2xl) 0 var(--md);
}

.footer-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lg);
  margin-bottom: var(--xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--xs);
  margin-bottom: var(--sm);
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: invert(73%) sepia(50%) saturate(737%) hue-rotate(5deg) brightness(96%) contrast(85%) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8)) drop-shadow(0 -1px 1px rgba(212, 175, 55, 0.4));
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(212, 175, 55, 0.7);
  margin-bottom: var(--md);
}

.footer-social {
  display: flex;
  gap: var(--sm);
}

.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.social-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition-base);
}

.social-brand-link:hover {
  transform: translateY(-3px);
}

.social-brand-link:hover .social-brand-name {
  color: var(--primary);
}

.social-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: var(--transition-base);
}

.footer-links-group h4,
.footer-contact-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-group ul,
.footer-contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--xs);
}

.footer-links-group a,
.footer-contact-info a {
  font-size: 14px;
  color: rgba(212, 175, 55, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links-group a:hover,
.footer-contact-info a:hover {
  color: var(--text-primary);
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: var(--xs);
  font-size: 14px;
  color: rgba(212, 175, 55, 0.7);
}

.footer-bottom-modern {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: var(--md);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  text-align: center;
  font-size: 14px;
  color: rgba(212, 175, 55, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: var(--md);
  justify-content: center;
}

.footer-legal-links a {
  color: rgba(212, 175, 55, 0.6);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

/* Floating WhatsApp */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  z-index: 999;
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .nav-actions {
    display: flex;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .hero-heading {
    font-size: 56px;
  }
  
  .hero-description {
    font-size: 20px;
  }
  
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-stats {
    gap: var(--lg);
  }
  
  .stat-value {
    font-size: 40px;
  }
  
  .logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .section-heading {
    font-size: 40px;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-trust-badges {
    flex-direction: row;
    justify-content: center;
    gap: var(--md);
  }
  
  .footer-grid-modern {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  
  .footer-bottom-modern {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-legal-links {
    justify-content: flex-end;
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .hero-heading {
    font-size: 72px;
  }
  
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  

  .section-heading {
    font-size: 48px;
  }
  
  .cta-heading {
    font-size: 40px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

section[id] {
  scroll-margin-top: 80px;
}


.gov-emblem {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: invert(73%) sepia(50%) saturate(737%) hue-rotate(5deg) brightness(96%) contrast(85%) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8)) drop-shadow(0 -1px 1px rgba(212, 175, 55, 0.4));
}

/* ========================================
   Appointment Booking Modal Styling
   ======================================== */
.appointment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.appointment-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.appointment-modal-card {
  width: 90%;
  max-width: 680px;
  max-height: 90vh;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

.appointment-modal-overlay.active .appointment-modal-card {
  transform: scale(1) translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.close-modal-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.modal-header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.modal-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Form Layout */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-group.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 576px) {
  .form-group.col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.25) !important;
}

/* Advocate Selection Badge */
.selected-lawyer-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  padding: 10px 16px;
}

.selected-lawyer-badge i {
  color: var(--primary);
  font-size: 16px;
}

.selected-lawyer-badge input {
  flex: 1;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  cursor: default;
}

.clear-lawyer-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.clear-lawyer-btn:hover {
  color: #EF4444;
}

/* Drag and Drop Zone */
.drag-drop-area {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.drag-drop-area.dragover {
  border-color: var(--primary);
  background: rgba(212, 175, 55, 0.05);
}

.drag-drop-icon {
  font-size: 32px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.drag-drop-area:hover .drag-drop-icon {
  color: var(--primary);
  transform: translateY(-2px);
}

.drag-drop-text {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.drag-drop-text .browse-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.file-specs {
  font-size: 11px;
  color: var(--text-secondary);
}

/* File Preview Container */
.file-preview-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 10px;
}

.file-preview-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-preview-info .file-icon {
  color: var(--primary);
  font-size: 20px;
}

.file-preview-info .file-name {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

.remove-file-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s ease;
}

.remove-file-btn:hover {
  color: #EF4444;
}

/* Submit Button */
.btn-submit-appointment {
  width: 100%;
  background: var(--gradient-hero);
  border: none;
  border-radius: 12px;
  padding: 15px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 10px;
}

.btn-submit-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.btn-submit-appointment:active {
  transform: translateY(0);
}

.btn-submit-appointment.loading {
  background: #2D2D2D !important;
  color: #7A7A7A !important;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}

/* Modal Success Overlay */
.modal-success-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  z-index: 100;
  border-radius: 20px;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  font-size: 48px;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.modal-success-screen h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 12px;
}

.modal-success-screen p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 30px;
}

.btn-success-close {
  background: #10B981;
  border: none;
  border-radius: 10px;
  padding: 12px 35px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}


