/* =========================================================
   London Immigration Assistance — Design System
   ========================================================= */

:root {
  /* Brand palette */
  --navy-900: #071a33;
  --navy-800: #0b2545;
  --navy-700: #123059;
  --navy-600: #1c4275;
  --gold-500: #c9a24e;
  --gold-400: #d8b76a;
  --gold-100: #f6edd8;
  --gold-700: #8a6d1f; /* AA-contrast (~5.4:1 on white) gold for text/icons on light backgrounds — gold-500 fails at ~2.3:1 */

  --ink: #0e1b2c;
  --slate-700: #33465c;
  --slate-500: #5a6b80;
  --slate-400: #8494a6;
  --line: #e4e9f0;
  --line-soft: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-tint: #f0f4fa;

  --success: #1f9d63;
  --whatsapp: #25d366;

  /* Type */
  --font-head: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.06), 0 2px 6px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-700); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-800); line-height: 1.12; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; color: var(--slate-700); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, .cal-day:focus-visible, .slot:focus-visible {
  outline: 2.5px solid var(--navy-700);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 20px; border-radius: 8px;
  font-weight: 600; font-size: .9rem; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold-500); display: inline-block; }
.eyebrow.center { justify-content: center; }
.lead { font-size: 1.2rem; color: var(--slate-500); max-width: 62ch; }
.text-center { text-align: center; }
.muted { color: var(--slate-500); }
.mx-auto { margin-left: auto; margin-right: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.bg-navy { background: var(--navy-800); color: #dfe8f3; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.grid { display: grid; gap: 26px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 22px rgba(201,162,78,.32); }
.btn-primary:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,162,78,.42); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy-800); color: var(--navy-800); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-wa { background: var(--whatsapp); color: #05391b; }
.btn-wa:hover { background: #1fc35c; color: #05391b; transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(11,37,69,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; color: var(--gold-400);
  font-weight: 700; font-size: 1.05rem; letter-spacing: .02em;
  border: 1px solid rgba(201,162,78,.4); box-shadow: inset 0 0 0 3px rgba(255,255,255,.04);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.06rem; color: var(--navy-800); font-weight: 600; letter-spacing: -.01em; }
.brand-text span { font-family: var(--font-body); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-500); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .93rem; font-weight: 500; color: var(--slate-700);
  padding: 9px 13px; border-radius: 8px; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-800); background: var(--bg-tint); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; border-radius: 2px; transition: .3s var(--ease); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; width: 460px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transition: all .22s var(--ease); z-index: 70;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .9rem; color: var(--slate-700); font-weight: 500; }
.dropdown a:hover { background: var(--bg-tint); color: var(--navy-800); }
.dropdown .dd-all { grid-column: 1 / -1; color: var(--gold-700); font-weight: 600; border-top: 1px solid var(--line-soft); margin-top: 4px; padding-top: 12px; }
/* Compact single-column dropdown for short menus (e.g. Fees) */
.dropdown.dropdown-sm { width: 240px; grid-template-columns: 1fr; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(170deg, #fbfcfe 0%, #eef3fa 100%); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(680px 420px at 82% 8%, rgba(201,162,78,.14), transparent 60%),
    radial-gradient(720px 520px at 10% 90%, rgba(18,48,89,.10), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 82px 0 86px; position: relative; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 1.8em; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--slate-700); font-weight: 500; }
.hero-badge svg { width: 18px; height: 18px; color: var(--success); flex: 0 0 auto; }

/* Fee card in hero */
.fee-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 34px; position: relative; overflow: hidden;
}
.fee-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }
.fee-card .tag { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); font-weight: 700; }
.fee-price { font-family: var(--font-head); font-size: 4.2rem; color: var(--navy-800); line-height: 1; margin: 6px 0 2px; }
.fee-price small { font-size: 1.1rem; color: var(--slate-500); font-family: var(--font-body); font-weight: 500; }
.fee-sub { color: var(--slate-500); font-size: .96rem; margin-bottom: 20px; }
.fee-list { list-style: none; margin: 0 0 24px; padding: 18px 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 11px; }
.fee-list li { display: flex; gap: 10px; font-size: .93rem; color: var(--slate-700); align-items: flex-start; }
.fee-list svg { width: 18px; height: 18px; color: var(--success); flex: 0 0 auto; margin-top: 1px; }

/* ---------- Trust bar ---------- */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 0; }
.trust-item { text-align: center; }
.trust-item .num { font-family: var(--font-head); font-size: 2.1rem; color: var(--navy-800); }
.trust-item .lbl { font-size: .85rem; color: var(--slate-500); letter-spacing: .02em; }

/* ---------- Cards ---------- */
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d5deea; }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--navy-700); margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: .4em; }
.card p { font-size: .95rem; margin-bottom: 0; }

/* Service card */
.svc-card { display: flex; flex-direction: column; height: 100%; }
.svc-card .svc-link { margin-top: auto; padding-top: 16px; font-weight: 600; font-size: .92rem; color: var(--gold-700); display: inline-flex; align-items: center; gap: 6px; }
.svc-card .svc-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.steps.grid-4 { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .step-num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-800); color: var(--gold-400); font-family: var(--font-head);
  font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 16px;
}
.step .step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.1rem; }
.step p { font-size: .92rem; margin: 0; }

/* Vertical timeline */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold-500), var(--line)); }
.tl-item { position: relative; padding: 0 0 34px 62px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 10px; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 2px solid var(--gold-500); display: grid; place-items: center; }
.tl-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }
.tl-item h3 { font-size: 1.12rem; margin-bottom: .25em; }
.tl-item p { font-size: .95rem; margin: 0; }

/* ---------- Pricing / fee comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare > div { padding: 34px; }
.compare .inc { background: #fff; }
.compare .exc { background: var(--bg-soft); border-left: 1px solid var(--line); }
.compare h3 { display: flex; align-items: center; gap: 10px; }
.compare ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.compare li { display: flex; gap: 11px; font-size: .96rem; color: var(--slate-700); align-items: flex-start; }
.compare li svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; }
.compare .inc li svg { color: var(--success); }
.compare .exc li svg { color: var(--slate-400); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 44px 24px 0; font-family: var(--font-head); font-size: 1.14rem; color: var(--navy-800);
  font-weight: 600; position: relative; display: block;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.7rem; color: var(--gold-700); font-weight: 300; transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 44px 24px 0; color: var(--slate-600); }
.faq-a p { margin: 0; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 38px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-700); box-shadow: 0 0 0 3px rgba(201,162,78,.16); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--slate-500); }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,157,99,.12); color: var(--success); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .tick svg { width: 32px; height: 32px; }

/* Booking calendar */
.booking-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; }
.cal { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-head strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy-800); }
.cal-nav { background: var(--bg-tint); border: none; width: 36px; height: 36px; border-radius: 9px; cursor: pointer; color: var(--navy-800); font-size: 1.1rem; transition: background .2s; }
.cal-nav:hover { background: var(--line); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; margin-bottom: 6px; }
.cal-dow span { text-align: center; font-size: .72rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: .06em; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.cal-day { aspect-ratio: 1; border: 1px solid transparent; background: none; border-radius: 9px; cursor: pointer; font-size: .92rem; color: var(--slate-700); font-weight: 500; transition: all .18s var(--ease); }
.cal-day:hover:not(:disabled) { background: var(--bg-tint); }
.cal-day.available { color: var(--navy-800); font-weight: 600; }
.cal-day.available::after { content: ""; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); margin: 2px auto 0; }
.cal-day.selected { background: var(--navy-800); color: #fff; }
.cal-day.selected::after { background: var(--gold-400); }
.cal-day:disabled { color: var(--line); cursor: default; }
.slots { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 6px; }
.slot { padding: 12px; border: 1.5px solid var(--line); background: #fff; border-radius: 9px; cursor: pointer; font-weight: 600; font-size: .92rem; color: var(--navy-800); transition: all .18s var(--ease); }
.slot:hover { border-color: var(--gold-500); }
.slot.selected { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.slot-empty { grid-column: 1/-1; color: var(--slate-500); font-size: .93rem; padding: 8px 0; }
.booking-summary { background: var(--bg-tint); border-radius: 12px; padding: 16px 18px; margin-bottom: 20px; font-size: .93rem; }
.booking-summary strong { color: var(--navy-800); }

/* ---------- Service detail page ---------- */
.svc-hero { background: linear-gradient(165deg, var(--navy-800), var(--navy-900)); color: #d7e2f0; padding: 66px 0 72px; position: relative; overflow: hidden; }
.svc-hero::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,78,.16), transparent 70%); }
.svc-hero .breadcrumb { font-size: .85rem; color: #9fb3cc; margin-bottom: 18px; }
.svc-hero .breadcrumb a { color: #9fb3cc; }
.svc-hero .breadcrumb a:hover { color: var(--gold-400); }
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.svc-body h2 { margin-top: 40px; }
.svc-body h2:first-child { margin-top: 0; }
.svc-body ul { padding-left: 0; list-style: none; display: grid; gap: 11px; margin: 0 0 20px; }
.svc-body ul li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate-700); }
.svc-body ul li svg { width: 19px; height: 19px; color: var(--gold-700); flex: 0 0 auto; margin-top: 3px; }
.svc-sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.side-card.fee { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #cfdcec; border: none; }
.side-card.fee .big { font-family: var(--font-head); font-size: 3rem; color: #fff; line-height: 1; }
.side-card.fee .big small { font-size: .95rem; color: #9fb3cc; font-family: var(--font-body); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, var(--navy-800), var(--navy-900)); color: #d7e2f0; border-radius: var(--radius-lg); padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(201,162,78,.18), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9bcd4; padding: 66px 0 28px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand-text strong { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { color: #a9bcd4; }
.footer-links a:hover { color: var(--gold-400); }
.footer-desc { max-width: 34ch; margin: 16px 0 20px; color: #93a8c2; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-400); flex: 0 0 auto; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: #7d93af; }
.footer-bottom .disclaimer { max-width: 62ch; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; align-items: center; gap: 12px; }
.wa-float .wa-btn {
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
  display: grid; place-items: center; color: #fff; box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .25s var(--ease); animation: waPulse 2.6s infinite;
}
.wa-float .wa-btn:hover { transform: scale(1.07); }
.wa-float .wa-btn svg { width: 32px; height: 32px; }
.wa-label { background: #fff; box-shadow: var(--shadow-md); padding: 10px 16px; border-radius: 12px; font-size: .88rem; font-weight: 600; color: var(--navy-800); position: relative; }
.wa-label::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #fff; }
@keyframes waPulse { 0% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); } 70% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: linear-gradient(170deg, #fbfcfe, #eef3fa); padding: 64px 0 60px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { margin-bottom: .3em; }
.page-hero .lead { margin: 0 auto; }

/* Value/list rows */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); }
.checklist li svg { width: 20px; height: 20px; color: var(--success); flex: 0 0 auto; margin-top: 3px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.pill { display: inline-block; padding: 5px 13px; background: var(--gold-100); color: var(--gold-700); border-radius: 999px; font-size: .8rem; font-weight: 600; }

/* Info note */
.note { background: var(--bg-tint); border-left: 3px solid var(--gold-500); border-radius: 0 10px 10px 0; padding: 16px 20px; font-size: .93rem; color: var(--slate-700); }
.note strong { color: var(--navy-800); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .booking-grid, .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .cards-3, .cards-4, .steps.grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fee-card { max-width: 440px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; overflow-x: clip; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  /* compact header so brand + CTA + burger fit a 375px viewport */
  .nav { height: 64px; }
  .nav .container, .site-header .container { padding: 0 14px; }
  .brand-mark { width: 34px; height: 34px; font-size: .85rem; border-radius: 9px; }
  .brand-text strong { font-size: .88rem; }
  .brand-text span { font-size: .58rem; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn-primary { padding: 9px 13px; font-size: .8rem; }
  .nav-menu-open .nav-links { inset: 64px 0 0; }
  .nav-menu-open .nav-links { display: flex; position: fixed; inset: 76px 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; z-index: 55; overflow-y: auto; }
  .nav-menu-open .nav-links a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-menu-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; width: 100%; grid-template-columns: 1fr; padding: 4px 0 4px 14px; }
  .cards-3, .cards-4, .steps.grid-4, .trust-inner, .cards-2, .compare, .field-row { grid-template-columns: 1fr; }
  .compare .exc { border-left: none; border-top: 1px solid var(--line); }
  .fee-price { font-size: 3.4rem; }
  .cta-band { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-label { display: none; }
  .form-card, .side-card { padding: 24px; }
  .btn-row .btn { flex: 1 1 auto; }
}

/* ---------- Live Chat widget ---------- */
.chat-fab {
  position: fixed; left: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 10px;
  background: var(--navy-800); color: #fff; border: none; cursor: pointer;
  padding: 13px 20px 13px 16px; border-radius: 999px; font-family: var(--font-body);
  font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-lg);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.chat-fab:hover { transform: translateY(-2px); background: var(--navy-700); }
.chat-fab svg { width: 22px; height: 22px; }
.chat-fab.hidden { display: none; }

.chat-panel {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 44px);
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  display: none; flex-direction: column; overflow: hidden; border: 1px solid var(--line);
}
.chat-panel.open { display: flex; animation: chatIn .22s var(--ease); }
@keyframes chatIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.chat-header { background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-header .ch-avatar { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: var(--gold-400); font-family: var(--font-head); font-weight: 700; flex: 0 0 auto; }
.chat-header strong { display: block; font-size: .98rem; }
.chat-header small { font-size: .74rem; opacity: .85; display: flex; align-items: center; gap: 5px; }
.chat-header small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #37d67a; display: inline-block; }
.chat-close { margin-left: auto; background: none; border: none; color: #fff; cursor: pointer; font-size: 1.4rem; line-height: 1; opacity: .8; padding: 4px; }
.chat-close:hover { opacity: 1; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); }
.chat-msg { max-width: 84%; padding: 10px 14px; border-radius: 14px; font-size: .9rem; line-height: 1.5; white-space: pre-line; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 3px; color: var(--slate-700); }
.chat-msg.me { background: var(--navy-800); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-typing { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; display: none; }
.chat-typing.on { display: block; }
.chat-typing i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--slate-400); margin: 0 2px; animation: chatBlink 1.2s infinite; }
.chat-typing i:nth-child(2) { animation-delay: .2s; } .chat-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes chatBlink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.chat-actions { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 92%; }
.chat-actions button, .chat-actions a { background: #fff; border: 1.5px solid var(--navy-700); color: var(--navy-700); border-radius: 999px; padding: 7px 14px; font-size: .82rem; font-weight: 600; cursor: pointer; font-family: inherit; text-decoration: none; transition: all .15s var(--ease); }
.chat-actions button:hover, .chat-actions a:hover { background: var(--navy-800); color: #fff; }
.chat-input { flex: 0 0 auto; display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 15px; font-size: .9rem; font-family: inherit; outline: none; }
.chat-input input:focus { border-color: var(--navy-700); }
.chat-input button { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--gold-500); color: var(--navy-900); cursor: pointer; flex: 0 0 auto; display: grid; place-items: center; }
.chat-input button:hover { background: var(--gold-400); }
.chat-input button svg { width: 19px; height: 19px; }
.chat-disclaimer { font-size: .68rem; color: var(--slate-400); text-align: center; padding: 0 12px 8px; background: #fff; }
.chat-contact-form { display: grid; gap: 8px; align-self: stretch; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.chat-contact-form input { border: 1.5px solid var(--line); border-radius: 8px; padding: 9px 12px; font-size: .86rem; font-family: inherit; outline: none; }
.chat-contact-form input:focus { border-color: var(--navy-700); }
.chat-contact-form button { background: var(--navy-800); color: #fff; border: none; border-radius: 8px; padding: 10px; font-weight: 600; font-size: .86rem; cursor: pointer; font-family: inherit; }

@media (max-width: 480px) {
  .chat-panel { left: 8px; right: 8px; bottom: 8px; width: auto; height: calc(100vh - 16px); }
  .chat-fab { left: 14px; bottom: 14px; padding: 11px 16px 11px 14px; font-size: .88rem; }
  .chat-fab .cf-label { display: none; }
}
