/* ============================================================
   MUTUALDIVORCE.CO.IN — MASTER STYLESHEET
   Version: 2.0 (Consolidated)
   Last Updated: June 2026
   
   TABLE OF CONTENTS:
   01. CSS Variables & Design Tokens
   02. Reset & Base
   03. Typography
   04. Layout Utilities
   05. Sticky Top Alert Bar
   06. Main Navigation
   07. Hero Section (Homepage)
   08. Lead Capture Form Card
   09. Video Thumbnail & Lightbox
   10. Calculator Section
   11. Toggle Switch
   12. Calculator Results
   13. Process Timeline
   14. FAQ Accordion
   15. Mechanism / Feature Cards
   16. Comparison Table
   17. Internal Page Hero
   18. Content Sections
   19. Bio / About Page
   20. Article / Blog Template
   21. Knowledge Hub
   22. Thank You Page
   23. Global Footer
   24. Sticky Bottom Action Bar
   25. Floating WhatsApp Button
   26. Breadcrumbs
   27. Inline CTA Block
   28. Trust Badges
   29. Testimonials Section
   30. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   01. CSS VARIABLES & DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colours */
  --navy:          #0A2540;
  --navy-light:    #1a3f6b;
  --red:           #D32F2F;
  --red-dark:      #b71c1c;
  --green-wa:      #25D366;
  --green-success: #2e7d32;
  --amber:         #ffb300;

  /* Neutrals */
  --white:         #ffffff;
  --off-white:     #f8f9fa;
  --border:        #e9ecef;
  --text-dark:     #1a1a2e;
  --text-body:     #444444;
  --text-muted:    #666666;
  --text-light:    #aab5c3;

  /* Semantic Colours */
  --color-success-bg:  #e8f5e9;
  --color-warning-bg:  #fff8e1;
  --color-error-bg:    #ffebee;
  --color-info-bg:     #e8f0fe;

  /* Spacing Scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  60px;
  --space-3xl:  80px;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  50px;

  /* Shadows */
  --shadow-sm:  0 2px 5px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 25px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 40px rgba(0,0,0,0.16);

  /* Typography */
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-ui:      'Segoe UI', Arial, sans-serif;

  /* Transitions */
  --transition: 0.3s ease;

  /* Layout */
  --max-width:       1200px;
  --max-width-narrow: 860px;
  --sticky-bar-h:    48px;
  --header-h:        64px;
  --total-offset:    112px; /* sticky-bar + header combined */
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-body);
  line-height: 1.6;
  /* Bottom padding so sticky bottom bar never covers content */
  padding-bottom: 64px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}

p:last-child { margin-bottom: 0; }

strong { color: var(--navy); }

blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  border-left: 5px solid var(--red);
  padding: var(--space-lg) var(--space-xl);
  background: var(--off-white);
  margin: var(--space-xl) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.narrow-container {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

.section-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: var(--space-2xl) 0;
}

.section-heading {
  margin-bottom: var(--space-xl);
}

.section-heading h2 {
  margin-bottom: var(--space-sm);
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Generic section padding */
.section-pad {
  padding: var(--space-2xl) 0;
}

/* Button Base */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background-color: var(--navy-light); color: var(--white); }

.btn-danger {
  background-color: var(--red);
  color: var(--white);
}
.btn-danger:hover { background-color: var(--red-dark); color: var(--white); }

.btn-whatsapp {
  background-color: var(--green-wa);
  color: var(--white);
}
.btn-whatsapp:hover { background-color: #1ebe5d; color: var(--white); }

/* Legacy class names from Gemini code — mapped to new system */
.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 15px;
  background-color: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover {
  background-color: var(--navy-light);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-submit.small-btn {
  width: auto;
  padding: 12px 24px;
  font-size: 1rem;
}


/* ============================================================
   05. STICKY TOP ALERT BAR
   ============================================================ */
.sticky-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-lg);
  height: var(--sticky-bar-h);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.alert-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: var(--space-md);
}

.action-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.action-buttons a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity var(--transition);
}
.action-buttons a:hover { opacity: 0.88; text-decoration: none; }

.btn-call { background-color: var(--red); }
.btn-wa   { background-color: var(--green-wa); color: #000 !important; }


/* ============================================================
   06. MAIN NAVIGATION
   ============================================================ */
.main-header {
  position: sticky;
  top: var(--sticky-bar-h);
  z-index: 999;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo:hover { text-decoration: none; }

.logo span {
  color: var(--red);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--red);
  text-decoration: none;
}

.nav-cta {
  background-color: var(--navy);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
}
.nav-cta:hover {
  background-color: var(--navy-light) !important;
  border-bottom: none !important;
}

/* Hamburger — mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--space-lg);
  gap: var(--space-md);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-weight: 600;
  color: var(--text-body);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); text-decoration: none; }


/* ============================================================
   07. HERO SECTION (HOMEPAGE)
   ============================================================ */
.hero-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--off-white) 0%, #e9ecef 100%);
  /* Push content below both sticky bars */
  margin-top: 0;
}

.hero-split {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  flex: 1 1 480px;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero-content .hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 5px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.trust-pill .pill-icon { font-size: 1rem; }

.hero-video {
  flex: 1 1 380px;
  text-align: center;
}

.video-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(211, 47, 47, 0.92);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform var(--transition), background var(--transition);
}

.video-thumbnail:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--red);
}

.play-icon {
  color: var(--white);
  font-size: 28px;
  margin-left: 5px;
}

.video-caption {
  margin-top: var(--space-md);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Video Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: 92%;
  max-width: 820px;
}

.close-lightbox {
  color: var(--white);
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.close-lightbox:hover { opacity: 1; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================================
   08. LEAD CAPTURE FORM CARD
   ============================================================ */
.lead-form-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--navy);
}

.lead-form-card h3 {
  color: var(--navy);
  margin-bottom: var(--space-xs);
  font-size: 1.4rem;
}

.form-subtext {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.lead-form-card form input,
.lead-form-card form select,
.lead-form-card form textarea {
  width: 100%;
  padding: 13px var(--space-md);
  margin-bottom: var(--space-md);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.lead-form-card form input:focus,
.lead-form-card form select:focus,
.lead-form-card form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}

.trust-badge {
  font-size: 0.82rem;
  text-align: center;
  margin-top: var(--space-md);
  color: var(--text-muted);
}


/* ============================================================
   09. CALCULATOR SECTION
   ============================================================ */
.calculator-section {
  padding: var(--space-2xl) 0;
  background-color: var(--white);
}

.calculator-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.calc-inputs {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.input-group {
  margin-bottom: var(--space-xl);
}

.input-group:last-child {
  margin-bottom: 0;
}

.input-group label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

/* Range Slider */
.slider-container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.range-slider {
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: var(--radius-sm);
  background: #d3d3d3;
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: none;
}

.slider-value {
  min-width: 92px;
  padding: 8px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}


/* ============================================================
   10. TOGGLE SWITCH
   ============================================================ */
.toggle-container {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.toggle-label {
  font-weight: 700;
  color: var(--text-muted);
  min-width: 28px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider.round {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider.round::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

input:checked + .slider.round {
  background-color: var(--green-wa);
}

input:checked + .slider.round::before {
  transform: translateX(26px);
}


/* ============================================================
   11. CALCULATOR RESULTS
   ============================================================ */
.result-box {
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.35s ease;
}

.result-box h3 {
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.timeline-display {
  display: inline-block;
  background: rgba(255,255,255,0.85);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.timeline-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-right: var(--space-sm);
}

.timeline-value {
  font-weight: 900;
  font-size: 1.35rem;
}

#resultText {
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

/* Status colour variants */
.status-success {
  background-color: var(--color-success-bg);
  border-top: 4px solid var(--green-wa);
}
.status-success h3,
.status-success .timeline-value { color: var(--green-success); }

.status-warning {
  background-color: var(--color-warning-bg);
  border-top: 4px solid var(--amber);
}
.status-warning h3,
.status-warning .timeline-value { color: #e65100; }

.status-error {
  background-color: var(--color-error-bg);
  border-top: 4px solid var(--red);
}
.status-error h3,
.status-error .timeline-value { color: var(--red-dark); }


/* ============================================================
   12. PROCESS TIMELINE
   ============================================================ */
.process-timeline {
  margin-top: var(--space-xl);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--navy);
  opacity: 0.15;
}

.timeline-step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.timeline-step:last-child { margin-bottom: 0; }

.step-number {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 6px var(--border);
}

.step-content {
  padding-top: 10px;
  flex: 1;
}

.step-content h4 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
}


/* ============================================================
   13. FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: var(--space-2xl) 0;
  background-color: var(--off-white);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background var(--transition);
  font-family: var(--font-body);
}

.faq-question:hover { background: var(--off-white); }

.faq-question.active {
  background: var(--navy);
  color: var(--white);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  line-height: 1;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  background: var(--white);
}

.faq-answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  margin: 0;
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
}

.faq-answer p strong { color: var(--navy); }


/* ============================================================
   14. MECHANISM / FEATURE CARDS
   ============================================================ */
.mechanism-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.mechanism-card {
  flex: 1 1 320px;
  background: var(--off-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mechanism-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mech-icon {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.mechanism-card h3 {
  color: var(--navy);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.mechanism-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.highlight-text {
  background: var(--color-info-bg);
  padding: 10px var(--space-md);
  border-left: 3px solid var(--navy);
  font-size: 0.93rem !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: var(--space-md);
}

/* Acts cards variant */
.act-card {
  display: flex;
  flex-direction: column;
}

.act-details {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px dashed #ccc;
  padding-left: 0 !important;
}

.act-details li {
  margin-bottom: var(--space-sm) !important;
  font-size: 0.93rem !important;
  color: var(--text-body);
}


/* ============================================================
   15. COMPARISON TABLE
   ============================================================ */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--white);
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-table thead th {
  background-color: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-table thead th:last-child {
  border-right: none;
}

.comparison-table td:first-child {
  background-color: var(--off-white);
  font-weight: 700;
  color: var(--navy);
  width: 28%;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Highlighted column (contested divorce) */
.highlight-col {
  background-color: #fff5f5 !important;
  border-left: 2px solid var(--red) !important;
  border-right: 2px solid var(--red) !important;
}

.comparison-table thead th.highlight-col {
  background-color: var(--red) !important;
}

.comparison-table tbody tr:last-child td.highlight-col {
  border-bottom: 2px solid var(--red) !important;
}


/* ============================================================
   16. INTERNAL PAGE HERO
   ============================================================ */
.page-hero {
  background-color: var(--navy);
  color: var(--white);
  padding: var(--space-2xl) var(--space-lg);
  border-bottom: 5px solid var(--red);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-md);
}

.page-hero .hero-subtext {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   17. CONTENT SECTIONS (INTERNAL PAGES)
   ============================================================ */
.content-section {
  padding: var(--space-2xl) 0;
  background-color: var(--white);
}

.section-title {
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
  padding-bottom: var(--space-sm);
}

.content-section p {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.content-section ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  list-style: disc;
}

.content-section ul li {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: var(--space-sm);
  line-height: 1.65;
}


/* ============================================================
   18. BIO / ABOUT PAGE
   ============================================================ */
.bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: flex-start;
  margin-bottom: var(--space-2xl);
}

.bio-image-container {
  flex: 1 1 280px;
  max-width: 340px;
}

.profile-pic {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-bottom: 6px solid var(--red);
}

.bio-text {
  flex: 2 1 380px;
}

.bio-subtitle {
  color: var(--red);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-family: var(--font-ui);
}

.stats-row {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.stat-box {
  background: var(--off-white);
  border-left: 4px solid var(--navy);
  padding: var(--space-md) var(--space-xl);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: inline-flex;
  flex-direction: column;
  min-width: 130px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Guarantee box */
.guarantee-box {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.guarantee-icon {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.guarantee-box h3 {
  color: var(--white);
  font-size: 1.6rem;
  border-bottom: 2px solid rgba(255,255,255,0.12);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
}

.guarantee-box .document-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.guarantee-box .document-list li:last-child {
  border-bottom: none;
}

.guarantee-box .document-list li strong {
  color: var(--green-wa);
}

.guarantee-box .document-list li p {
  color: #e9ecef;
}


/* ============================================================
   19. ARTICLE / BLOG TEMPLATE
   ============================================================ */
.article-hero {
  background: var(--white);
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.article-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin: var(--space-md) 0;
  line-height: 1.15;
  font-weight: 900;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.author-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.publish-date {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Article body layout */
.article-body-section {
  background: var(--off-white);
  padding: var(--space-2xl) 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.article-content {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.lead-paragraph {
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--red);
  padding-left: var(--space-lg);
}

.article-content h2 {
  font-size: 1.7rem;
  margin: var(--space-xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border);
}

.article-content h3 {
  font-size: 1.3rem;
  margin: var(--space-xl) 0 var(--space-md);
}

.article-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.article-content ul {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
  list-style: disc;
}

.article-content ul li {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  line-height: 1.65;
}

/* Inline CTA in article */
.inline-cta {
  background: var(--color-info-bg);
  border: 1px solid #c2d7fa;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
  text-align: center;
}

.inline-cta h3 { margin-top: 0; }

.inline-cta p {
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

/* Sticky sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--total-offset) + var(--space-lg));
}

.sticky-sidebar-card {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.sticky-sidebar-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: var(--space-md);
}

.sticky-sidebar-card p {
  color: #e2e8f0;
  margin-bottom: var(--space-lg);
  font-size: 0.98rem;
}

.sidebar-benefits {
  padding: 0;
  margin-bottom: var(--space-lg);
}

.sidebar-benefits li {
  color: var(--green-wa);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.sidebar-wa {
  display: block;
  text-align: center;
  margin-top: var(--space-md);
  padding: 13px var(--space-lg);
}


/* ============================================================
   20. KNOWLEDGE HUB
   ============================================================ */
.hub-category {
  margin-bottom: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.category-header h2 {
  color: var(--white);
  margin: 0;
  font-size: 1.4rem;
}

.view-pillar-link {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.12);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}

.view-pillar-link:hover {
  background: rgba(255,255,255,0.22);
  text-decoration: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
}

.guide-card {
  background: var(--white);
  padding: var(--space-xl);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.guide-tag {
  display: inline-block;
  background: var(--color-info-bg);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.guide-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.guide-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.6;
}


/* ============================================================
   21. THANK YOU PAGE
   ============================================================ */
.thank-you-section {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.success-banner {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 50%;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.success-banner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.success-banner .subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.next-steps-card {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.next-steps-card h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.next-steps-card p {
  color: #dde4ef;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}

.checklist-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
}

.checklist-card h2 {
  margin-bottom: var(--space-md);
}

.checklist-card > p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.document-list {
  padding: 0;
}

.document-list li {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.document-list li:last-child {
  border-bottom: none;
}

.document-list li strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.document-list li p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.nri-highlight {
  background: var(--color-info-bg);
  padding: var(--space-lg) !important;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--navy);
  margin-top: var(--space-sm);
}


/* ============================================================
   22. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-wa);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-size: 4rem;
  color: var(--border);
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
}

.testimonial-tag {
  display: inline-block;
  background: var(--color-success-bg);
  color: var(--green-success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  margin-top: var(--space-xs);
}


/* ============================================================
   23. GLOBAL FOOTER
   ============================================================ */
.global-footer {
  background-color: var(--navy);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
  font-size: 0.93rem;
  /* Enough bottom margin so sticky bottom bar doesn't cover it */
  padding-bottom: 80px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.footer-desc {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-contact p {
  margin-bottom: var(--space-xs);
  color: #d1d9e6;
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background-color: var(--red);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: #7a8a9e;
  font-size: 0.82rem;
}

.disclaimer {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  color: #6a7a8e;
}

/* BCI Compliance notice in footer */
.bci-notice {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  font-size: 0.78rem;
  color: #8a9ab0;
  line-height: 1.55;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   24. STICKY BOTTOM ACTION BAR
   ============================================================ */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--white);
  border-top: 2px solid var(--navy);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.bottom-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.desktop-text {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.btn-bottom-action {
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 11px var(--space-xl);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-bottom-action:hover {
  background-color: var(--red-dark);
  text-decoration: none;
  transform: translateY(-1px);
  color: var(--white);
}

.mobile-btn-text { display: none; }


/* ============================================================
   25. FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 76px; /* sits above sticky bottom bar */
  right: var(--space-lg);
  background-color: var(--green-wa);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.45);
  z-index: 997;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(37,211,102,0.6);
  text-decoration: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 22px rgba(37,211,102,0.7); }
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 144px; /* above floating WA */
  right: var(--space-lg);
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 996;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover { transform: translateY(-3px); }


/* ============================================================
   26. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--red);
  text-decoration: none;
}

.breadcrumbs span[aria-current="page"] {
  color: var(--text-muted);
}

.breadcrumbs .sep {
  color: var(--border);
  font-size: 0.75rem;
}


/* ============================================================
   27. INLINE CTA BLOCK
   ============================================================ */
.inline-cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  text-align: center;
  margin: var(--space-2xl) 0;
  box-shadow: var(--shadow-lg);
}

.inline-cta-block h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.inline-cta-block p {
  color: #dde4ef;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   28. TRUST BADGES STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item .icon { font-size: 1.3rem; }


/* ============================================================
   29. PRIVACY POLICY / LEGAL PAGES
   ============================================================ */
.legal-page-content {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.legal-page-content h2 {
  font-size: 1.5rem;
  margin: var(--space-xl) 0 var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  color: var(--navy);
}

.legal-page-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-page-content p,
.legal-page-content li {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-page-content ul {
  padding-left: var(--space-lg);
  list-style: disc;
  margin-bottom: var(--space-lg);
}

.legal-effective-date {
  background: var(--color-info-bg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  display: inline-block;
}


/* ============================================================
   30. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet — 992px */
@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    margin-top: var(--space-xl);
  }

  .bio-image-container {
    max-width: 100%;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --sticky-bar-h: 72px; /* taller on mobile for 2-line layout */
    --total-offset: 136px;
  }

  /* Sticky top bar stacks on mobile */
  .sticky-top-bar {
    flex-direction: column;
    height: auto;
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-xs);
    text-align: center;
  }

  .alert-text {
    white-space: normal;
    padding-right: 0;
    font-size: 0.82rem;
  }

  .action-buttons a {
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  /* Navigation */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-split { flex-direction: column; }
  .hero-video { order: 0; }

  /* Calculator */
  .slider-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .slider-value { align-self: flex-end; }

  /* Stats */
  .stats-row { flex-direction: column; }

  /* Footer */
  .footer-grid { flex-direction: column; }

  /* Bottom bar — mobile only shows CTA button */
  .desktop-text { display: none; }
  .mobile-btn-text { display: inline-block; }
  .desktop-btn-text { display: none; }
  .btn-bottom-action { width: 100%; font-size: 1rem; }
  .bottom-bar-flex { justify-content: center; }

  /* Category header */
  .category-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Guide grid */
  .guide-grid { grid-template-columns: 1fr; }

  /* Mechanism grid */
  .mechanism-grid { flex-direction: column; }

  /* Bio grid */
  .bio-grid { flex-direction: column; }
  .bio-image-container { order: -1; }

  /* CTA buttons */
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .container,
  .narrow-container { padding: 0 var(--space-md); }

  .lead-form-card { padding: var(--space-lg); }
  .checklist-card { padding: var(--space-lg); }
  .mechanism-card { padding: var(--space-lg); }

  .trust-strip-inner { gap: var(--space-md); }
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PRIVACY POLICY PAGE SPECIFIC STYLES
   (Appended to master style.css)
   ============================================================ */

/* DPDP Compliance Banner */
.dpdp-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: var(--color-info-bg);
  border: 1.5px solid #c2d7fa;
  border-left: 5px solid var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}

.dpdp-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dpdp-banner strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.dpdp-banner p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Policy Notice Boxes */
.policy-notice {
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.policy-notice strong {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.policy-notice p {
  margin-bottom: var(--space-sm);
  font-size: 0.96rem;
}

.policy-notice p:last-child { margin-bottom: 0; }

.notice-important {
  background: #fff8e1;
  border-left: 5px solid var(--amber);
}

.notice-safe {
  background: var(--color-success-bg);
  border-left: 5px solid var(--green-wa);
}

.notice-bci {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--navy);
}

/* Data Table */
.data-table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0 var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
  background: var(--white);
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px var(--space-lg);
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
}

.data-table td {
  padding: 12px var(--space-lg);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-body);
  line-height: 1.6;
}

.data-table td:first-child {
  background: var(--off-white);
  font-weight: 600;
  white-space: nowrap;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: #f0f4ff;
}

/* Contact Box */
.contact-box {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-lg) 0;
}

.contact-box p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  color: var(--text-body);
}

.contact-box p:last-child { margin-bottom: 0; }

/* Policy footer note */
.policy-footer-note {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-footer-note p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.policy-footer-note a {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 70px;
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 520px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg) var(--space-xl);
  z-index: 990;
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.9rem; color: var(--text-body); margin-bottom: var(--space-md); }
.cookie-buttons { display: flex; gap: var(--space-md); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@media (max-width: 768px) {
  .cookie-banner { left: var(--space-md); right: var(--space-md); bottom: 76px; }
  .cookie-buttons { flex-direction: column; }
}

/* ============================================================
   HOMEPAGE HERO FIXES — V3
   ============================================================ */

/* Logo — controlled size, not too large */
.logo {
  font-size: 1.25rem !important;
  letter-spacing: -0.3px;
}

/* Hero H1 — service-first, controlled size */
.hero-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

/* Hero section — tighter padding on mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.55rem !important;
  }
  .hero-section {
    padding: var(--space-xl) 0;
  }
}

/* Sticky top bar — smaller, denser, service-info focused */
.sticky-top-bar {
  font-size: 0.82rem !important;
  height: 42px !important;
}
:root {
  --sticky-bar-h: 42px;
  --total-offset: 106px;
}

/* Lead form card — more compact */
.lead-form-card {
  padding: var(--space-lg) !important;
}

.lead-form-card h3 {
  font-size: 1.2rem !important;
  margin-bottom: 4px !important;
}

/* ============================================================
   VIDEO LIGHTBOX — HTML5 VIDEO FIX
   ============================================================ */
.lightbox-modal.open {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 75vh;
  display: block;
  border-radius: var(--radius-md);
}

/* Video thumbnail click cursor */
[data-video-src] {
  cursor: pointer;
}

/* Mechanism cards used as video tiles */
.mechanism-card[data-video-src]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   FINAL UX / BRAND POLISH — June 2026
   Purpose: modern colour palette, clearer video placement,
   responsive hero order, BCI modal, readable guide links.
   ============================================================ */
:root {
  --navy: #102A43;
  --navy-light: #1E4E79;
  --red: #E11D48;
  --red-dark: #BE123C;
  --amber: #F59E0B;
  --teal: #0F766E;
  --teal-light: #14B8A6;
  --off-white: #F6F8FB;
  --border: #E3E8EF;
  --text-dark: #172033;
  --text-body: #334155;
  --text-muted: #64748B;
  --font-display: var(--font-body);
}
body { background: #F6F8FB; color: var(--text-body); }
h1, h2, h3, h4 { letter-spacing: -0.025em; }
h1 { font-size: clamp(1.75rem, 3.6vw, 2.55rem); }
h2 { font-size: clamp(1.38rem, 2.5vw, 1.95rem); }
.main-header { background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); }
.nav-inner { gap: 28px; }
.logo { margin-right: 28px !important; flex-shrink: 0; }
.nav-links { margin-left: 8px; gap: 20px; }
.nav-links a { font-size: 0.9rem; }
.nav-cta, .btn-submit, .btn-primary { background: linear-gradient(135deg, var(--teal), #0B5F59) !important; color: #fff !important; border: 0; }
.btn-submit:hover, .btn-primary:hover, .nav-cta:hover { background: linear-gradient(135deg, #0B5F59, var(--navy-light)) !important; color:#fff !important; }
.btn-call { background: var(--red) !important; }
.btn-wa, .btn-whatsapp { background: var(--green-wa) !important; color: #07150c !important; display:inline-flex; align-items:center; gap:7px; }
.wa-inline-icon { width: 18px; height: 18px; display:inline-block; vertical-align:middle; }
.hero-section { background: radial-gradient(circle at 10% 10%, #E0F7F4 0, transparent 30%), linear-gradient(135deg, #F8FBFF 0%, #EEF7FF 100%); padding-top: 46px; }
.hero-content h1 { color: var(--text-dark); max-width: 660px; }
.hero-content .hero-sub { font-size: 1.08rem; }
.lead-form-card { border-top-color: var(--teal) !important; border-radius: 18px; box-shadow: 0 18px 45px rgba(15, 42, 67, 0.11); }
.video-thumbnail { border-radius: 18px; box-shadow: 0 22px 48px rgba(15,42,67,.18); overflow:hidden; border:1px solid rgba(15,118,110,.18); }
.play-button-overlay { background: linear-gradient(135deg, var(--teal), var(--amber)); }
.video-caption { color: var(--text-dark); }
.hero-video-strip { display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:14px; }
.hero-video-strip button { border:1px solid var(--border); background:#fff; border-radius:14px; padding:8px; text-align:center; cursor:pointer; box-shadow:0 8px 22px rgba(15,42,67,.08); transition: transform .2s ease, box-shadow .2s ease; }
.hero-video-strip button:hover { transform: translateY(-2px); box-shadow:0 14px 30px rgba(15,42,67,.13); }
.hero-video-strip img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:10px; margin-bottom:5px; }
.hero-video-strip span { display:block; font-size:.78rem; font-weight:700; color:var(--navy); }
.trust-strip { background: #102A43; }
.trust-strip .trust-item { color: #EAF2F8; }
.mechanism-card, .simple-card, .guide-card, .topic-box { border-top-color: var(--teal) !important; border-radius:18px; }
.video-meta { display: none !important; }
.video-explainer-section .section-heading p { display:none; }
.video-card { display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:center; background:#fff; border:1px solid var(--border); border-radius:20px; padding:20px; box-shadow:0 14px 34px rgba(15,42,67,.09); }
.video-card video { width:100%; border-radius:16px; background:#000; display:block; }
.video-body h3 { margin-top:0; color: var(--text-dark); }
.video-body p { font-size:1rem; color: var(--text-muted); }
.top-feature-section { padding-top: 34px; }
.feature-split { display:grid; grid-template-columns: minmax(0,1fr) minmax(360px, 480px); gap:34px; align-items:start; }
.feature-copy { min-width:0; }
.top-video-card { position: sticky; top: calc(var(--total-offset) + 20px); }
.clean-list { list-style: none; padding:0; margin: 18px 0; }
.clean-list li { margin: 12px 0; padding-left: 30px; position:relative; color:var(--text-body); line-height:1.65; }
.clean-list li:before { content:'✓'; position:absolute; left:0; top:0; width:22px; height:22px; display:grid; place-items:center; background:#E0F7F4; color:var(--teal); border-radius:50%; font-weight:900; font-size: .85rem; }
.warning-note { background:#FFF7ED; border-left:4px solid var(--amber); color:#7C2D12; }
.compact-form { margin-top: 24px; }
.form-subtext { color: var(--text-muted); }
.testimonials-section { display:none !important; }
.article-sidebar { background:#fff; border:1px solid var(--border); border-radius:18px; padding:18px; box-shadow:0 10px 28px rgba(15,42,67,.08); }
.article-sidebar h3 { margin:0 0 12px; font-size:1.1rem; }
.article-sidebar a { display:block; padding:10px 12px 10px 28px; margin-bottom:8px; border-radius:10px; background:#F8FAFC; color:var(--navy); text-decoration:none; position:relative; font-size:.95rem; line-height:1.35; }
.article-sidebar a:before { content:'•'; position:absolute; left:13px; color:var(--teal); font-weight:900; }
.article-sidebar a:hover { background:#E0F7F4; text-decoration:none; }
.guide-card-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:22px; margin-top:22px; }
.guide-card { background:#fff; border:1px solid var(--border); padding:22px; box-shadow:0 10px 28px rgba(15,42,67,.07); }
.guide-card h3 { font-size:1.1rem; }
.guide-card a { color:var(--navy); text-decoration:none; }
.guide-card a:hover { color:var(--teal); }
.topics-map { gap:18px; }
.floating-wa { background: var(--green-wa) !important; display:flex !important; align-items:center; justify-content:center; box-shadow:0 16px 30px rgba(37,211,102,.32); }
.floating-wa img { width: 34px; height: 34px; }
.bci-modal { position:fixed; inset:0; z-index:3000; display:none; align-items:center; justify-content:center; padding:24px; background:rgba(9,19,35,.62); backdrop-filter: blur(6px); }
.bci-modal.show { display:flex; }
.bci-modal-card { max-width:640px; background:#fff; border-radius:22px; padding:30px; box-shadow:0 28px 70px rgba(0,0,0,.28); border-top:6px solid var(--teal); }
.bci-modal-card h2 { margin-top:0; color:var(--text-dark); }
.bci-modal-card p { color:var(--text-body); font-size:1rem; line-height:1.7; }
.bci-modal-card .btn { margin-top:10px; min-width:160px; }
@media (max-width: 1024px) { .nav-links { gap: 12px; } .nav-links a { font-size:.84rem; } .logo { margin-right:12px !important; } .feature-split { grid-template-columns: 1fr; } .top-video-card { position:static; } .guide-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 768px) { .hero-split { flex-direction: column; } .hero-content { order:0; } .hero-video { order:0 !important; width:100%; } .hero-video-strip { grid-template-columns: 1fr; } .hero-video-strip button { display:grid; grid-template-columns: 120px 1fr; align-items:center; gap:12px; text-align:left; } .video-card { grid-template-columns:1fr; } .guide-card-grid { grid-template-columns: 1fr; } .nav-inner { gap:12px; } .logo { font-size:1.08rem !important; margin-right:auto !important; } .page-hero { padding: var(--space-xl) 0; } .sticky-bottom-bar { z-index:1002; } }
@media (max-width: 460px) { .hero-video-strip button { grid-template-columns: 96px 1fr; } .bci-modal-card { padding:22px; } }


/* ============================================================
   URGENT FIX V3 — video close button, subtitle removal support,
   and visible/native Formspree forms
   ============================================================ */
.close-lightbox,
.lightbox-close {
  color: #111111 !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.18) !important;
  border-radius: 999px !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18) !important;
}
.close-lightbox:hover,
.lightbox-close:hover {
  background: #f3f6fb !important;
  color: #000000 !important;
}
.explainer-video::cue,
#explainerVideo::cue {
  visibility: hidden;
}
.form-hidden,
input[name="_gotcha"] {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* AJAX form status message */
.form-status-message {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.94rem;
  line-height: 1.45;
  font-weight: 600;
}
.form-status-message.error {
  background: #fff2f2;
  color: #9b1c1c;
  border: 1px solid #f2b5b5;
}
.form-status-message.info,
.form-status-message.success {
  background: #eefaf6;
  color: #0f5d45;
  border: 1px solid #aee4d4;
}

/* ============================================================
   MOBILE NAVIGATION — COMPLETE FIX
   ============================================================ */

/* Hamburger always visible on mobile */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-hamburger { 
    display: flex !important; 
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
}

/* Mobile nav drawer — full width dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--teal);
  padding: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
}

.mobile-nav.open { 
  display: flex !important; 
}

.mobile-nav a {
  font-weight: 600;
  color: var(--navy);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  font-size: 1rem;
  display: block;
  transition: background 0.2s;
}

.mobile-nav a:hover { 
  background: var(--off-white); 
  color: var(--teal);
}

.mobile-nav a:last-child { border-bottom: none; }

/* Make header position relative for absolute dropdown */
.main-header {
  position: sticky;
  top: var(--sticky-bar-h);
  z-index: 998;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Sticky top bar — compact on mobile */
@media (max-width: 768px) {
  .sticky-top-bar {
    flex-direction: row !important;
    flex-wrap: wrap;
    height: auto !important;
    padding: 6px 12px !important;
    gap: 4px;
  }
  .alert-text {
    font-size: 0.75rem !important;
    width: 100%;
    text-align: center;
    white-space: normal;
  }
  .action-buttons {
    width: 100%;
    justify-content: center;
    display: flex;
    gap: 8px;
  }
  .action-buttons a {
    padding: 4px 10px !important;
    font-size: 0.78rem !important;
  }
  :root {
    --sticky-bar-h: 64px !important;
    --total-offset: 120px !important;
  }
}

/* ============================================================
   BACK BUTTON FIX
   Push state so back button goes to previous page not exit
   ============================================================ */

/* ============================================================
   PAN INDIA CITY PILLS
   ============================================================ */
.city-pill {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
}
.city-pill:hover {
  background: rgba(255,255,255,0.2);
}
