/* ============================================================
   BYLAW.IN — MARRIAGE REGISTRATION PRACTICE
   Master Stylesheet — /marriageregistration/
   Design System: Navy #0D1B2A · Gold #C9A84C
   Fonts: Cormorant Garamond + Outfit
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:       #0D1B2A;
  --navy-light: #162336;
  --gold:       #C9A84C;
  --gold-light: #FFF8E7;
  --gold-muted: rgba(201,168,76,0.25);
  --red:        #8B1A1A;
  --cream:      #FAF7F2;
  --green:      #25D366;
  --muted:      #6B7280;
  --white:      #ffffff;
  --banner-h:   44px;
  --nav-h:      64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body { background: var(--cream); color: var(--navy); font-family: 'Outfit', sans-serif; font-weight: 400; line-height: 1.75; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── BCI DISCLAIMER POPUP ── */
#bci-popup {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,27,42,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.bci-popup-box {
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 8px;
  max-width: 580px; width: 100%;
  padding: 40px 36px 32px;
  text-align: center;
}
.bci-popup-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.bci-popup-sub {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(201,168,76,0.6); margin-bottom: 24px;
}
.bci-popup-divider {
  width: 40px; height: 1px; background: var(--gold-muted);
  margin: 0 auto 24px;
}
.bci-popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; color: var(--white);
  margin-bottom: 16px;
}
.bci-popup-text {
  font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.bci-popup-btn {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 36px; border-radius: 4px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.bci-popup-btn:hover { background: #e0b85c; transform: translateY(-1px); }

/* ── URGENCY BANNER ── */
.urgency-banner {
  position: sticky; top: 0; z-index: 200;
  background: var(--red);
  height: var(--banner-h);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 0 16px;
  font-size: 0.78rem; font-weight: 500; color: var(--white);
  text-align: center; flex-wrap: wrap;
}
.urgency-banner span { opacity: 0.9; }
.urgency-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 3px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; transition: opacity 0.2s;
  white-space: nowrap;
}
.urgency-btn:hover { opacity: 0.85; }
.urgency-btn.whatsapp { background: var(--green); color: var(--white); }
.urgency-btn.call { background: var(--white); color: var(--navy); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky; top: var(--banner-h); z-index: 199;
  background: var(--navy);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--gold-muted);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 8px 20px; border-radius: 3px; font-weight: 700 !important;
}
.nav-cta:hover { background: #e0b85c !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.nav-mobile {
  display: none; position: absolute; top: calc(var(--banner-h) + var(--nav-h));
  left: 0; right: 0; z-index: 198;
  background: var(--navy-light);
  border-bottom: 1px solid var(--gold-muted);
  padding: 20px;
  flex-direction: column; gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  padding: 8px 0; border-bottom: 1px solid var(--gold-muted);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold);
  padding: 6px 14px; border: 1px solid var(--gold-muted);
  border-radius: 3px; transition: all 0.2s;
}
.nav-back-btn:hover { background: var(--gold-muted); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 36px 40px 32px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -60px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-muted); padding: 6px 14px;
  border-radius: 2px; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 600; line-height: 1.1; color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.8; max-width: 600px; margin-bottom: 32px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.hero-badge {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06); padding: 6px 14px;
  border-radius: 2px; border: 1px solid rgba(255,255,255,0.1);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 14px 28px; border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #e0b85c; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  font-weight: 500; font-size: 0.85rem; padding: 14px 24px;
  border-radius: 4px; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-muted); }

/* ── SECTION WRAPPER ── */
.section { padding: 72px 40px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.15; color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-lead {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
  max-width: 680px; margin-bottom: 48px;
}

/* ── HUB SPOKE CARDS ── */
.spoke-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.spoke-card {
  background: var(--navy);
  border: 1px solid var(--gold-muted); border-radius: 6px;
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.spoke-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,27,42,0.3);
}
.spoke-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.spoke-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--gold);
  margin-bottom: 10px;
}
.spoke-card-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-bottom: 20px; flex-grow: 1;
}
.spoke-card-link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(201,168,76,0.7);
  margin-bottom: 18px; display: block;
  transition: color 0.2s;
}
.spoke-card-link:hover { color: var(--gold); }
.spoke-card-btns { display: flex; flex-direction: column; gap: 10px; }
.spoke-btn-primary {
  display: block; text-align: center;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 12px 16px; border-radius: 3px;
  transition: background 0.2s;
}
.spoke-btn-primary:hover { background: #e0b85c; }
.spoke-btn-secondary {
  display: block; text-align: center;
  border: 1px solid var(--gold-muted); color: rgba(255,255,255,0.75);
  font-weight: 500; font-size: 0.78rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 11px 16px; border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.spoke-btn-secondary:hover { border-color: var(--gold); color: var(--white); }

/* ── STATS GRID ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--gold-muted); margin: 48px 0;
}
.stat-item {
  background: var(--navy); padding: 28px 20px; text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}

/* ── RISK / ALERT GRID ── */
.risk-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 32px;
}
.risk-item {
  background: var(--white); border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0; padding: 24px 20px;
}
.risk-icon { font-size: 1.4rem; margin-bottom: 10px; }
.risk-title {
  font-weight: 700; font-size: 0.9rem; color: var(--navy);
  margin-bottom: 8px;
}
.risk-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── JOURNEY STEPS ── */
.journey-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 40px; position: relative;
}
.journey-grid::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px; background: var(--gold-muted);
}
.journey-step { padding: 0 16px; text-align: center; }
.journey-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 1;
}
.journey-day {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.journey-title {
  font-weight: 700; font-size: 0.88rem; color: var(--navy);
  margin-bottom: 8px;
}
.journey-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* ── PROCESS STEPS (SPOKE PAGES) ── */
.process-steps { margin-top: 32px; }
.process-step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 0 24px; margin-bottom: 32px; align-items: start;
}
.process-step-badge {
  background: var(--navy); border: 1px solid var(--gold);
  border-radius: 4px; padding: 8px 6px; text-align: center;
  position: sticky; top: calc(var(--banner-h) + var(--nav-h) + 16px);
}
.process-step-badge .day-code {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); opacity: 0.7;
}
.process-step-badge .day-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: var(--gold); line-height: 1.1;
}
.process-step-body {
  background: var(--white); border-radius: 4px; padding: 24px 22px;
  border: 1px solid rgba(201,168,76,0.15);
}
.process-step-body h4 {
  font-weight: 700; font-size: 0.95rem; color: var(--navy);
  margin-bottom: 10px;
}
.process-step-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ── COUNTRY CARDS ── */
.country-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px;
}
.country-card {
  background: var(--white); border-radius: 4px; padding: 20px 18px;
  border: 1px solid rgba(201,168,76,0.2);
}
.country-flag { font-size: 1.6rem; margin-bottom: 10px; }
.country-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 8px; }
.country-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* ── OBJECTION / INFO BOXES ── */
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px;
}
.info-box {
  background: var(--cream); border-radius: 4px; padding: 22px 18px;
  border: 1px solid rgba(201,168,76,0.2);
}
.info-box-icon { font-size: 1.5rem; margin-bottom: 10px; }
.info-box h4 { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 8px; }
.info-box p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* ── DOCUMENT CHECKLIST ── */
.checklist-section { background: var(--gold-light); padding: 72px 40px; }
.checklist-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px;
}
.checklist-col { background: var(--white); border-radius: 4px; padding: 24px 20px; }
.checklist-col h4 {
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-muted);
}
.checklist-col li {
  font-size: 0.8rem; color: #374151; line-height: 1.6;
  padding: 6px 0; border-bottom: 1px solid #f3f4f6;
  padding-left: 22px; position: relative;
}
.checklist-col li::before {
  content: '✔'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.7rem; top: 7px;
}
.checklist-note {
  margin-top: 20px; padding: 16px 18px;
  background: var(--navy); border-radius: 4px;
  font-size: 0.78rem; color: rgba(255,255,255,0.7); line-height: 1.7;
}

/* ── IMPORTANT NOTICE BOX ── */
.notice-box {
  background: var(--navy); border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0; padding: 20px 22px;
  margin-top: 24px;
}
.notice-box p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.75; }
.notice-box strong { color: var(--gold); }

/* ── FAQ ACCORDION ── */
.faq-section { padding: 72px 40px; background: var(--cream); }
.faq-list { max-width: 820px; margin: 32px auto 0; }
.faq-item {
  background: var(--white); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; margin-bottom: 10px; overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer;
  font-weight: 600; font-size: 0.88rem; color: var(--navy);
  gap: 16px; user-select: none;
  transition: background 0.15s;
}
.faq-question:hover { background: #fafaf8; }
.faq-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--navy);
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 0.83rem; color: var(--muted); line-height: 1.8;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 400px; padding: 4px 20px 18px;
}

/* ── CONTACT FORM SECTION ── */
.contact-section { background: var(--navy); padding: 72px 40px; }
.contact-inner { max-width: 620px; margin: 0 auto; }
.contact-section .section-title { color: var(--white); }
.contact-section .section-label { color: rgba(201,168,76,0.8); }
.contact-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 4px;
  padding: 12px 14px; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 0.85rem;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.dpdp-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.77rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.dpdp-row input[type="checkbox"] { margin-top: 3px; min-width: 14px; accent-color: var(--gold); }
.dpdp-row strong { color: rgba(255,255,255,0.75); }
.form-submit {
  background: var(--gold); color: var(--navy); border: none;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 4px; cursor: pointer;
  transition: background 0.2s, transform 0.15s; align-self: flex-start;
}
.form-submit:hover { background: #e0b85c; transform: translateY(-1px); }
.form-success {
  display: none; background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3); border-radius: 4px;
  padding: 14px 18px; font-size: 0.83rem; color: #6ee7a0; margin-top: 8px;
}
.availability-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 8px;
  display: flex; align-items: center; gap: 6px;
}
.availability-note::before {
  content: '●'; color: var(--green); font-size: 0.5rem;
}

/* ── FOOTER ── */
.site-footer { background: var(--navy-light); padding: 40px 40px 28px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px; padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-muted);
  margin-bottom: 24px;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  margin-bottom: 4px;
}
.footer-brand p {
  font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.5;
}
.footer-contact { text-align: right; }
.footer-contact a {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,0.65);
  margin-bottom: 4px; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact .footer-hours {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.footer-nav a {
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.75;
  border-top: 1px solid var(--gold-muted); padding-top: 20px;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.5); }
.footer-copy {
  margin-top: 16px; font-size: 0.7rem; color: rgba(255,255,255,0.2);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 24px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(201,168,76,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2.5; }

/* ── STICKY BOTTOM CTA (SPOKE PAGES) ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 290;
  background: var(--navy);
  border-top: 1px solid var(--gold-muted);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 20px;
}
.sticky-cta a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 3px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; transition: opacity 0.2s;
  white-space: nowrap;
}
.sticky-cta a:hover { opacity: 0.85; }
.sticky-cta .cta-wa { background: var(--green); color: var(--white); }
.sticky-cta .cta-call { background: var(--white); color: var(--navy); }
.sticky-cta .cta-eval { background: var(--gold); color: var(--navy); }
.sticky-cta-text {
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-right: 4px;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  max-width: 1080px; margin: 0 auto;
  border: none; border-top: 1px solid var(--gold-muted);
}

/* ── RELATED LINKS ── */
.related-section { background: var(--cream); padding: 40px 40px; }
.related-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.related-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--gold-muted);
  color: var(--navy); font-size: 0.82rem; font-weight: 600;
  padding: 10px 18px; border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.related-link:hover { border-color: var(--gold); background: var(--gold-light); }

/* ── DARK SECTION ── */
.dark-section { background: var(--navy); padding: 72px 40px; }
.dark-section .section-title { color: var(--white); }

/* ── PROCESS FRAMEWORK (TATKAL) ── */
.framework-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px;
}
.framework-card {
  background: var(--white); border-radius: 4px; padding: 22px 18px;
  border-top: 3px solid var(--gold);
}
.framework-card h4 { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 10px; }
.framework-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }
.framework-card .tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold-light); color: var(--gold);
  padding: 3px 8px; border-radius: 2px; margin-bottom: 10px;
}

/* ── WITNESS / INFO CARDS ── */
.witness-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px;
}
.witness-card {
  background: var(--cream); border-radius: 4px; padding: 20px 16px;
  border: 1px solid rgba(201,168,76,0.2);
}
.witness-card-icon { font-size: 1.4rem; margin-bottom: 10px; }
.witness-card h4 { font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 8px; }
.witness-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* ── FRRO RISK BOXES ── */
.risk-box {
  background: var(--cream); border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0; padding: 20px 18px; margin-bottom: 14px;
}
.risk-box h4 { font-weight: 700; font-size: 0.88rem; color: var(--red); margin-bottom: 8px; }
.risk-box p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .spoke-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .country-grid { grid-template-columns: 1fr 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .witness-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --banner-h: 52px; }
  .section, .faq-section, .checklist-section, .contact-section,
  .dark-section, .related-section { padding: 52px 20px; }
  .hero { padding: 52px 20px 48px; }
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .spoke-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-contact { text-align: left; }
  .sticky-cta .sticky-cta-text { display: none; }
  .process-step { grid-template-columns: 56px 1fr; gap: 0 16px; }
  .whatsapp-float { bottom: 72px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(28px, 8vw, 44px); }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .urgency-banner { font-size: 0.7rem; }
  .sticky-cta { gap: 8px; padding: 8px 12px; }
  .sticky-cta a { padding: 8px 12px; font-size: 0.72rem; }
}

/* ===========================
   GEO KEY FACTS SECTION
   =========================== */
.geo-facts-section {
  background: var(--white);
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.geo-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.geo-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 16px;
  background: var(--cream);
  border: 0.5px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.geo-fact-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}
.geo-fact-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 768px) {
  .geo-facts-grid { grid-template-columns: 1fr; }
  .geo-fact { padding: 14px 12px; }
}
