:root {
  --bg-color: #f8fafc; /* Light gray/white background */
  --surface-color: #ffffff;
  --surface-border: #e2e8f0;
  
  /* Indian Tricolor */
  --saffron: #FF9933;
  --white: #FFFFFF;
  --green: #138808;
  --navy: #000080; /* Ashoka Chakra */
  
  --primary: var(--saffron);
  --primary-hover: #e68a2e;
  --secondary: var(--green);
  --secondary-hover: #107507;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  
  --gradient-1: linear-gradient(135deg, #FF9933 0%, #e68a2e 100%);
  --gradient-2: linear-gradient(135deg, #138808 0%, #107507 100%);
  --gradient-tricolor: linear-gradient(90deg, #FF9933 0%, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%, #138808 100%);
  
  --safe: #138808; /* Using Indian Green for safe */
  --warning: #f59e0b;
  --danger: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Blobs for Aesthetic - Indian Colors */
.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.blob-1 {
  top: -5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--saffron);
}

.blob-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--green);
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--saffron);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.btn-secondary {
  background: white;
  border: 2px solid var(--saffron);
  color: var(--saffron);
  font-weight: 700;
}
.btn-secondary:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover {
  color: var(--navy);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.1rem;
}

/* Header */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--surface-border);
  z-index: 100;
}
.glass-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-tricolor);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:not(.btn):hover {
  color: var(--saffron);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 130px 0 60px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(19, 136, 8, 0.1);
  color: var(--green);
  border: 1px solid rgba(19, 136, 8, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--navy);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Glass Card / Mockup */
.glass-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.hero-slider {
  display: grid;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  transform: translateX(0) scale(0.8);
  pointer-events: none;
  
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
  border: 4px solid white;
  overflow: hidden;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(11, 15, 25, 0.9);
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
}

.hero-slide.active {
  opacity: 1;
  z-index: 3;
  transform: translateX(0) scale(1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.hero-slide.prev {
  opacity: 0.4;
  z-index: 2;
  transform: translateX(-35%) scale(0.85) rotateY(15deg);
}

.hero-slide.next {
  opacity: 0.4;
  z-index: 2;
  transform: translateX(35%) scale(0.85) rotateY(-15deg);
}



/* Sections Common */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Benefits Section */
.benefits-section {
  padding: 60px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.benefit-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--saffron);
}

.icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  color: var(--saffron);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  position: relative;
}

.pricing-grid {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 24px;
  padding-top: 24px; /* Space for the Most Popular badge */
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.pricing-grid::-webkit-scrollbar {
  display: block; /* Chrome/Safari */
  height: 8px;
}
.pricing-grid::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Pricing Carousel Wrapper and Arrows */
.pricing-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 60px; /* Space for arrows */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--surface-border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: var(--navy);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Pricing Tabs */
.pricing-tabs-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px; /* Increased gap as requested */
}
.pricing-tabs-container::-webkit-scrollbar {
  display: none;
}
.pricing-tab {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-main);
  background: white;
  border: 1px solid var(--surface-border);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-tab:hover:not(.active) {
  border-color: var(--saffron);
  color: var(--saffron);
}
.pricing-tab.active {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.pricing-card {
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
  background: white;
  min-width: 320px;
  flex-shrink: 0;
}
.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  border: 2px solid var(--saffron);
  box-shadow: 0 20px 25px -5px rgba(255, 153, 51, 0.15);
}
.pricing-card.premium-tier {
  border: 2px solid var(--green);
  box-shadow: 0 20px 25px -5px rgba(19, 136, 8, 0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgba(255, 153, 51, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--surface-border);
}
.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.pricing-header .price {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.pricing-header .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.features-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.disabled-feature {
  color: #94a3b8;
}
.disabled-feature svg {
  display: none;
}

.highlight-feature {
  color: var(--saffron);
  font-weight: 600;
}
.highlight-feature svg {
  display: none;
}


/* Trust Banner */
.trust-banner {
  background: white;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 24px 0;
  margin-bottom: -50px; /* pull up into hero slightly or just sit below */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.trust-items {
  display: flex;
  justify-content: space-between;
    flex-wrap: wrap;
  gap: 20px;
}

/* FAQs Section */
.faq-section {
  padding: 80px 0;
  background: white;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
  border-color: var(--saffron);
  box-shadow: 0 8px 24px rgba(255, 153, 51, 0.15);
  transform: translateY(-2px);
  background: white;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--saffron);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--saffron);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-answer-inner strong {
  color: var(--saffron);
}
/* Footer */
.footer {
  border-top: 4px solid var(--saffron);
  padding: 60px 0 20px;
  margin-top: 100px;
  background: var(--navy);
  color: white;
}
.footer-brand .logo {
  color: white;
}
.footer-brand .logo span {
  color: var(--saffron);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #cbd5e1;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.link-group h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}
.link-group a {
  display: none;
  color: #cbd5e1;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}
.link-group a:hover {
  color: var(--saffron);
}

.footer-bottom {
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.9rem;
}

/* Forms (Login/Signup) */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
}

.auth-card {
  width: 100%;
  max-width: 450px;
  padding: 40px;
  background: white;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}
.auth-header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.auth-header p {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--saffron);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.auth-footer a {
  color: var(--saffron);
  font-weight: 700;
}



/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: var(--surface-color);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.review-card {
  padding: 30px;
  position: relative;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--surface-border);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}
.quote-icon {
  width: 60px;
  height: 60px;
  color: rgba(255, 153, 51, 0.15);
  position: absolute;
  top: 20px;
  right: 20px;
}
.stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.review-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  font-weight: 700;
  color: var(--navy);
}

/* Trust Banner */
.trust-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a237e 100%);
  padding: 60px 0;
  color: white;
}
.trust-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.trust-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.trust-content p {
  color: #cbd5e1;
  font-size: 1.1rem;
}
.trust-stats {
  display: flex;
  gap: 40px;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--saffron);
  margin-bottom: 5px;
}
.stat-item p {
  color: #e2e8f0;
  font-weight: 500;
}

/* Authentication Pages */
.auth-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.auth-container {
  background: white;
  max-width: 450px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--surface-border);
  padding: 40px;
}
.auth-header {
  text-align: center;
  margin-bottom: 30px;
}
.auth-header h1 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.auth-header p {
  color: var(--text-muted);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--saffron);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}
.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.auth-footer a {
  color: var(--saffron);
  font-weight: 700;
}


/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--surface-color);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 100;
  border-radius: 8px;
  border: 1px solid var(--surface-border);
  top: 100%;
  left: 0;
  overflow: hidden;
}
.dropdown-content a {
  color: var(--navy) !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
}
.dropdown-content a:hover {
  background-color: rgba(0,0,0,0.03);
  color: var(--saffron) !important;
}
.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.2s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  .trust-indicators {
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
    color: var(--navy);
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-slider {
    max-width: 90%;
    margin: 2rem auto 0;
  }
  
  /* Pricing Section Responsive Fixes */
  .pricing-tabs-container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
  }
  .pricing-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .pricing-card {
    min-width: unset;
    width: 85vw;
    flex: 0 0 85vw;
  }
  
  .carousel-btn {
    display: flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
  }
  .prev-btn {
    left: 4px;
  }
  .next-btn {
    right: 4px;
  }
  
  .pricing-carousel-wrapper {
    padding: 0;
  }
  
  .container {
    padding: 0 16px;
  }

  .pricing-grid::-webkit-scrollbar {
    display: block;
    height: 6px;
  }
  .pricing-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }
  .pricing-grid {
    scrollbar-width: auto;
  }
  
  .trust-banner {
    margin-bottom: 0;
  }
}


/* Premium Footer Styling */
.footer {
  position: relative;
  background: #000000;
  color: white;
  padding: 100px 0 20px;
  margin-top: 80px;
  overflow: hidden;
  border-top: 4px solid var(--saffron);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,153,51,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.footer .logo {
  font-size: 2.2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.footer-brand-col p {
  color: #94a3b8;
  margin-top: 24px;
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 380px;
}
.footer-links-col h3 {
  font-size: 1.25rem;
  margin-bottom: 28px;
  color: white;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.footer-links-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-col ul li {
  margin-bottom: 18px;
}
.footer-links-col ul li a {
  color: #94a3b8;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.footer-links-col ul li a::before {
  content: '›';
  color: var(--saffron);
  font-size: 1.5rem;
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.footer-links-col ul li a:hover {
  color: white;
  transform: translateX(5px);
}
.footer-links-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  color: #64748b;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Premium FAQ Styling Overrides */
.faq-section {
  background: #f8fafc;
  padding: 100px 0;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr 1fr;
  }
}
.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}
.faq-item.active {
  background: white;
  border-color: var(--saffron);
  box-shadow: 0 20px 25px -5px rgba(255, 153, 51, 0.1);
  transform: translateY(-2px);
}
.faq-question {
  padding: 28px 32px;
  font-size: 1.15rem;
  color: var(--navy);
}
.faq-icon {
  width: 28px;
  height: 28px;
  color: var(--saffron);
  background: rgba(255, 153, 51, 0.1);
  border-radius: 50%;
  padding: 4px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--saffron);
  color: white;
}
.faq-answer-inner {
  padding: 0 32px 32px;
  font-size: 1.05rem;
  color: #475569;
}
