/* ==========================================================================
   Travel Vaccines London — full website stylesheet
   Plain CSS, no framework. Brand: teal + warm coral, clinical-but-friendly.
   ========================================================================== */

:root {
  --teal-900: #06343a;
  --teal-800: #0a444b;
  --teal-700: #0e5a63;   /* primary */
  --teal-600: #127884;
  --teal-100: #cfe6e8;
  --teal-50:  #eaf4f5;
  --coral-600:#e04e2e;
  --coral-500:#f2674a;   /* accent / CTA */
  --coral-100:#fbe0d8;
  --gold: #f4b740;
  --ink: #13262b;
  --ink-700: #33474d;
  --muted: #556970;   /* darkened to pass 4.5:1 contrast on soft bg */
  --line: #e1eaec;
  --bg: #ffffff;
  --bg-soft: #f3f8f9;
  --white: #fff;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(8,40,45,.06), 0 1px 3px rgba(8,40,45,.05);
  --shadow: 0 10px 30px -12px rgba(8,40,45,.18);
  --shadow-lg: 0 30px 60px -20px rgba(8,40,45,.28);
  --max: 1180px;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal-600); }

h1, h2, h3, h4 { font-family: var(--head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1, h2 { font-family: var(--display); letter-spacing: -.015em; font-optical-sizing: auto; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.2rem; color: var(--ink-700); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-soft { background: var(--bg-soft); }
.section-teal { background: var(--teal-700); color: #dceff0; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ---------- Bits ---------- */
.eyebrow { display: inline-block; font-family: var(--head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 14px; }
.section-teal .eyebrow { color: var(--teal-100); }
.muted { color: var(--muted); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }

.pill { display: inline-flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .85rem; font-weight: 600; color: var(--ink-700); box-shadow: var(--shadow-sm); }
.chip { display: inline-block; background: var(--teal-50); color: var(--teal-700); border-radius: 999px; padding: 4px 12px; font-size: .8rem; font-weight: 600; margin: 0 6px 6px 0; }
.chip-amber { background: #fdf2dd; color: #9a6b12; }
.chip-coral { background: var(--coral-100); color: var(--coral-600); }

/* icon badge */
.ibadge { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--teal-50); color: var(--teal-700); flex: none; }
.ibadge-coral { background: var(--coral-100); }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; left: 16px; top: 16px; width: auto; height: auto; background: var(--teal-700); color: #fff; padding: 10px 18px; border-radius: var(--radius-sm); font-family: var(--head); font-weight: 700; font-size: .95rem; z-index: 9999; text-decoration: none; outline: 3px solid #fff; outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--head); font-weight: 700; font-size: .98rem; padding: 13px 24px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .08s ease, background .15s ease, box-shadow .15s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--teal-600); outline-offset: 3px; }
.btn-primary:focus-visible { outline-color: var(--coral-600); }
.btn-white:focus-visible, .btn-outline-white:focus-visible { outline-color: #fff; }
.btn-primary { background: var(--coral-500); color: #fff; box-shadow: 0 8px 20px -8px rgba(224,78,46,.6); }
.btn-primary:hover { background: var(--coral-600); color: #fff; }
.btn-secondary { background: var(--white); color: var(--teal-700); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--teal-600); color: var(--teal-700); }
.btn-teal { background: var(--teal-700); color: #fff; }
.btn-teal:hover { background: var(--teal-800); color: #fff; }
.btn-white { background: #fff; color: var(--teal-800); }
.btn-white:hover { background: #eef6f7; color: var(--teal-900); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn.is-disabled { opacity: .5; cursor: not-allowed; pointer-events: none; box-shadow: none; }

/* ---------- Announcement + header ---------- */
.announce { background: var(--teal-800); color: #cfe6e8; font-size: .85rem; text-align: center; padding: 8px 16px; }
.announce strong { color: #fff; }
.announce a { color: #fff; text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 22px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo:hover { color: inherit; }
.logo-text { font-family: var(--head); font-weight: 800; font-size: 1.12rem; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.logo-text small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-family: var(--head); font-weight: 600; font-size: .96rem; color: var(--ink-700); }
.main-nav a:hover, .main-nav a.active { color: var(--teal-700); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 42px; font-size: 1.3rem; cursor: pointer; color: var(--ink); }
.nav-toggle:focus-visible { outline: 2px solid var(--teal-600); outline-offset: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(1100px 480px at 88% -10%, var(--teal-50), transparent 60%), var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: clamp(40px, 6vw, 84px) 0; }
.hero h1 span { color: var(--teal-700); }
.hero .lead { margin-top: 6px; max-width: 520px; }
.hero-trust { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-visual { position: relative; }
.hero-card-main { background: linear-gradient(150deg, var(--teal-700), var(--teal-900)); border-radius: var(--radius-lg); min-height: 380px; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 320px; }
.hero-card-main::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 40%), radial-gradient(circle at 80% 90%, rgba(244,183,64,.18), transparent 45%); }
.hero-globe { font-size: 8rem; filter: drop-shadow(0 12px 24px rgba(0,0,0,.3)); z-index: 1; }
.hero-card-main.has-photo { background-size: cover; background-position: center; }
.hero-card-main.has-photo::after { background-image: linear-gradient(160deg, rgba(14,90,99,.30), rgba(11,58,64,.60)); }
.hero-flag-badge { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.94); border-radius: 999px; padding: 7px 15px 7px 11px; font-family: var(--head); font-weight: 700; font-size: .9rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.hero-flag-badge .flag { font-size: 1.25rem; line-height: 1; }
.float-card { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.float-card .ibadge { width: 42px; height: 42px; font-size: 1.2rem; border-radius: 11px; }
.float-1 { top: 26px; left: -22px; }
.float-2 { bottom: 28px; right: -18px; }
.float-card b { font-family: var(--head); display: block; font-size: .95rem; }
.float-card small { color: var(--muted); font-size: .78rem; }

/* ---------- Logos / trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 0; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 130px; }
.trust-item b { font-family: var(--head); font-size: 1.6rem; color: var(--teal-700); }
.trust-item span { font-size: .85rem; color: var(--muted); }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.hover-lift { transition: transform .15s ease, box-shadow .15s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-top: 16px; }

/* vaccine card */
.vcard { display: flex; flex-direction: column; height: 100%; cursor: pointer; }
.vcard .price { font-family: var(--head); font-weight: 800; color: var(--teal-700); font-size: 1.15rem; margin: 2px 0 10px; }
.vcard p { font-size: .95rem; color: var(--muted); flex: 1; }
.vcard .btn { margin-top: 14px; }

/* feature */
.feature p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

/* steps */
.step { position: relative; padding-top: 8px; }
.step .num { font-family: var(--head); font-weight: 800; font-size: 1rem; width: 44px; height: 44px; border-radius: 50%; background: var(--teal-700); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step p { color: var(--muted); margin-bottom: 0; }

/* destination card */
.dcard { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; display: block; box-shadow: var(--shadow-sm); }
.dcard .top { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--teal-600), var(--teal-800)); }
.dcard:nth-child(2n) .top { background: linear-gradient(135deg, #1f7f7a, #0a444b); }
.dcard:nth-child(3n) .top { background: linear-gradient(135deg, #2a8f86, #094249); }
.dcard .body { padding: 16px 18px; }
.dcard .body h3 { margin: 0 0 4px; font-size: 1.1rem; }
.dcard .body span { font-size: .85rem; color: var(--muted); }

/* testimonial */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: 2px; }
.quote p { font-size: 1rem; margin: 12px 0 16px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-100); color: var(--teal-800); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; }
.team-card { padding: 32px 24px 28px; }
.team-photo-wrap { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; background: var(--bg-soft); margin: 0 auto 20px; }
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(100%); display: block; }
.team-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.team-role { color: var(--teal-700); font-weight: 600; font-size: .92rem; margin: 0 0 6px; }
.hero-staff-map { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 480px; }
.hero-staff-row { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-staff { display: flex; align-items: center; gap: 12px; }
.hero-staff .team-photo-wrap { margin: 0; flex-shrink: 0; }
.hero-staff strong { display: block; font-family: var(--head); font-size: .9rem; color: var(--ink); }
.hero-staff span { display: block; font-size: .78rem; color: var(--muted); }
.staff-mini { display: flex; align-items: center; gap: 12px; }
.staff-mini + .staff-mini { margin-top: 14px; }
.staff-mini .team-photo-wrap { margin: 0; flex-shrink: 0; }
.staff-mini strong { display: block; font-family: var(--head); font-size: .88rem; color: var(--ink); }
.staff-mini span { display: block; font-size: .76rem; color: var(--muted); }
.quote .who b { font-family: var(--head); font-size: .95rem; }
.quote .who small { display: block; color: var(--muted); }

/* ---------- Pricing ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--teal-700); color: #fff; font-family: var(--head); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.price-table .cat td { background: var(--bg-soft); font-family: var(--head); font-weight: 700; color: var(--teal-800); text-transform: uppercase; font-size: .8rem; letter-spacing: .05em; }
.price-table tbody tr:hover { background: var(--teal-50); }
.price-table .p { font-family: var(--head); font-weight: 800; color: var(--teal-700); white-space: nowrap; }
.price-table td:last-child, .price-table th:last-child { text-align: right; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: var(--head); font-weight: 700; font-size: 1.05rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--teal-700); }
.faq-q:focus-visible { outline: 2px solid var(--teal-600); outline-offset: -2px; border-radius: var(--radius-sm); }
.faq-q .sign { font-size: 1.5rem; color: var(--teal-600); line-height: 1; flex: none; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; padding: 0 22px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; padding: 0 22px 22px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--teal-700), var(--teal-900)); color: #fff; text-align: center; border-radius: var(--radius-lg); padding: clamp(40px,6vw,68px) 30px; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 85% 15%, rgba(244,183,64,.16), transparent 40%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #cfe6e8; position: relative; max-width: 540px; margin: 0 auto 26px; }
.cta-band .btn-row { position: relative; justify-content: center; }

/* ---------- Breadcrumbs + detail ---------- */
.crumbs { font-size: .85rem; color: var(--muted); padding: 22px 0 0; }
.crumbs a { color: var(--teal-700); }
.detail { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.detail h2 { margin-top: 34px; }
.detail h2:first-child { margin-top: 0; }
.detail ul { padding-left: 20px; color: var(--ink-700); }
.detail li { margin-bottom: 8px; }
.sidebar-card { position: sticky; top: 96px; }
.booking-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.booking-box .price { font-family: var(--head); font-weight: 800; font-size: 2rem; color: var(--teal-700); }
.callout { background: var(--teal-50); border-left: 4px solid var(--teal-600); border-radius: 0 10px 10px 0; padding: 16px 18px; color: var(--ink-700); font-size: .95rem; }
.callout-amber { background: #fdf6e8; border-color: var(--gold); }

/* ---------- Destination page V2 (CRO pass) ---------- */
.dd-hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin: -20px auto 34px; padding: 14px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); max-width: 620px; font-size: .85rem; font-weight: 600; color: var(--teal-800); position: relative; z-index: 1; }
.dd-hero-trust span { white-space: nowrap; }
.dd-price-teaser { font-family: var(--head); font-weight: 700; color: var(--teal-700); margin: -6px 0 20px; font-size: .98rem; }
.dd-urgency { background: var(--bg-soft); border-left: 3px solid var(--teal-600); padding: 10px 12px; font-size: .85rem; color: var(--ink-700); border-radius: 0 6px 6px 0; margin: 14px 0 18px; }
.dd-trust-line { text-align: center; font-size: .85rem; color: var(--muted); margin: 14px 0 0; }
.dd-related { margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); }
.dd-related h3 { font-size: 1rem; margin: 0 0 12px; }
.dd-related-links { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.dd-related-links a { display: inline-block; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: .88rem; color: var(--teal-700); font-weight: 600; }
.dd-related-links a:hover { background: var(--teal-50); }

.mobile-book-bar { display: none; }
@media (max-width: 980px) {
  .mobile-book-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 18px rgba(0,0,0,.08); padding: 12px 18px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .mobile-book-bar-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
  .mobile-book-bar-text strong { font-family: var(--head); font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mobile-book-bar-sub { font-size: .78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mobile-book-bar .btn { flex-shrink: 0; padding: 11px 20px; }
  .mobile-book-spacer { padding-bottom: 78px; }
  .dd-hero-trust { margin-top: -16px; font-size: .8rem; gap: 8px 16px; }
}

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--head); font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #c9d6d9; border-radius: var(--radius-sm); font-family: var(--body); font-size: 1rem; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(18,120,132,.14); }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink-700); }
.check input[type=checkbox] { width: 22px; height: 22px; margin-top: 1px; flex-shrink: 0; accent-color: var(--teal-700); cursor: pointer; }
.check label { cursor: pointer; }

/* steps progress (booking) */
.steps-bar { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.steps-bar .s { flex: 1; min-width: 100px; border-top: 3px solid var(--line); padding-top: 10px; font-family: var(--head); font-size: .85rem; color: var(--muted); transition: border-color .2s, color .2s; }
.steps-bar .s.active { border-color: var(--coral-500); color: var(--ink); font-weight: 700; }
.steps-bar .s.done { border-color: var(--teal-700); color: var(--teal-700); }

/* multi-step panels */
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 12px; }
.step-nav .btn-back { background: none; border: 1px solid var(--line); color: var(--muted); padding: 10px 18px; border-radius: var(--radius); cursor: pointer; font-family: var(--body); font-size: .95rem; }
.step-nav .btn-back:hover { border-color: var(--ink); color: var(--ink); }

/* confirm summary */
.bk-summary { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 20px; }
.bk-summary h4 { margin: 0 0 8px; font-size: .95rem; color: var(--ink); }
.bk-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 5px 16px; margin: 0 0 14px; }
.bk-summary dt { color: var(--muted); font-size: .88rem; white-space: nowrap; }
.bk-summary dd { margin: 0; font-weight: 500; font-size: .88rem; }

/* booking confirmation screen */
.bk-conf { display: flex; flex-direction: column; align-items: center; padding: 40px 24px 32px; text-align: center; }
.bk-conf h2 { font-family: var(--head); color: var(--ink); }
.bk-conf__ref { font-family: var(--head); font-size: 1.6rem; font-weight: 800; color: var(--teal-700); letter-spacing: .04em; background: var(--soft); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 10px 28px; }
.bk-conf__steps { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; text-align: left; max-width: 360px; width: 100%; }
.bk-conf__step { display: flex; align-items: flex-start; gap: 14px; font-size: .95rem; }
.bk-conf__num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--teal-700); color: #fff; font-family: var(--head); font-size: .82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* vaccine checkbox picker */
.vaccine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }
.vaccine-grid .vaccine-check { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 8px; cursor: pointer; transition: border-color .15s, background .15s; user-select: none; }
.vaccine-check:hover { border-color: var(--teal-700); }
.vaccine-check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--teal-700); flex-shrink: 0; cursor: pointer; margin: 0; padding: 0; }
.vaccine-check.selected { border-color: var(--teal-700); background: #eef6f6; }
.vc-name { font-weight: 600; font-size: .9rem; flex: 1; color: var(--ink); }
.vc-price { color: var(--teal-700); font-size: .85rem; font-weight: 600; white-space: nowrap; padding-left: 4px; }

/* appointment time-slot picker */
.slot-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.slot-btn { border: 1.5px solid var(--line); border-radius: 8px; background: #fff; padding: 9px 14px; font-family: var(--body); font-size: .88rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .15s, background .15s; }
.slot-btn:hover:not(:disabled) { border-color: var(--teal-700); }
.slot-btn.selected { border-color: var(--teal-700); background: #eef6f6; color: var(--teal-700); }
.slot-btn:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* traveller count stepper */
.traveller-row { display: flex; align-items: center; gap: 16px; margin: 20px 0 0; }
.traveller-row label { font-family: var(--head); font-weight: 600; font-size: .9rem; }
.t-stepper { display: flex; align-items: center; gap: 10px; }
.t-btn { width: 30px; height: 30px; border: 1.5px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 1.15rem; line-height: 1; display: flex; align-items: center; justify-content: center; font-family: var(--body); transition: border-color .15s, color .15s; padding: 0; }
.t-btn:hover:not(:disabled) { border-color: var(--teal-700); color: var(--teal-700); }
.t-btn:disabled { opacity: .35; cursor: default; }
.t-count { font-family: var(--head); font-size: 1.2rem; font-weight: 700; min-width: 20px; text-align: center; }

/* DOB three-select */
.dob-selects { display: grid; grid-template-columns: 0.8fr 1.3fr 1fr; gap: 8px; }

/* traveller health check divider */
.traveller-health { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.traveller-health h4 { margin: 0 0 4px; font-size: .95rem; }

/* pricing: per-dose note */
.dose-note { display: block; color: var(--muted); font-size: .78rem; font-weight: 400; margin-top: 2px; }

/* destination autocomplete */
.dest-wrap { position: relative; }
.dest-suggestions { display: none; position: absolute; left: 0; right: 0; top: 100%; z-index: 20; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-sm); overflow: hidden; margin-top: 2px; }
.dest-suggestions.open { display: block; }
.dest-sugg-item { padding: 10px 14px; cursor: pointer; font-size: .93rem; }
.dest-sugg-item:hover, .dest-sugg-item.focused { background: var(--soft); }
.dest-rec { background: #eef6f6; border: 1.5px solid var(--teal-700); border-radius: 8px; padding: 9px 14px; margin-top: 10px; font-size: .88rem; color: var(--teal-700); display: none; }

@media (max-width: 600px) { .vaccine-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #a9c6c9; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #a9c6c9; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; font-size: .82rem; color: #80a3a6; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Mobile nav + responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .detail { grid-template-columns: 1fr; gap: 30px; }
  .sidebar-card { position: static; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-cta .btn-primary { display: none; }
  .main-nav.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 22px 16px; box-shadow: var(--shadow); z-index: 100; }
  .main-nav.open a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--bg-soft); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 620px) {
  .container { padding: 0 26px; }
  .announce { padding: 10px 22px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .price-table { display: block; width: auto; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table th, .price-table td { padding: 13px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-1 { left: 0; } .float-2 { right: 0; }
  .trust-row { gap: 18px 0; }
  .trust-item { min-width: 45%; }
}

/* ---------- Find us / map ---------- */
.find-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.map-frame { width: 100%; height: 430px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.tube-list { list-style: none; padding: 0; margin: 12px 0 0; }
.tube-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .97rem; }
.tube-list li:last-child { border-bottom: 0; }
.tube-dot { width: 13px; height: 13px; border-radius: 50%; flex: none; background: #e1251b; }
.tube-list .lines { color: var(--muted); font-size: .85rem; }
.tube-list .mins { margin-left: auto; color: var(--muted); font-size: .85rem; white-space: nowrap; }
@media (max-width: 980px) { .find-grid { grid-template-columns: 1fr; } .map-frame { height: 320px; } }

/* ---------- Mobile nav book CTA ---------- */
.mobile-book { display: none; }
@media (max-width: 980px) {
  .main-nav.open .mobile-book { display: inline-flex; margin: 12px 0 4px; border-bottom: 0 !important; width: auto !important; padding: 12px 22px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Cookie consent banner (injected by js/consent.js) ---------- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 999; display: flex; justify-content: center; padding: 16px; pointer-events: none; }
.cookie-banner__inner { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px 26px; max-width: 640px; width: 100%; pointer-events: auto; }
.cookie-banner__inner p { margin: 0 0 14px; font-size: .92rem; color: var(--ink-700); }
.cookie-banner__inner h3 { margin: 0 0 12px; font-family: var(--head); font-size: 1.1rem; color: var(--ink); }
.cookie-banner__inner .check { margin-bottom: 12px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; margin-top: 4px; }
.cookie-banner__actions .btn { padding: 10px 18px; font-size: .9rem; }
@media (max-width: 560px) {
  .cookie-banner { padding: 10px; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; }
}
