/* ===================================================================
   City Pharmacy — Shared Stylesheet
   Brand palette: #45bb12 (green), #203555 (navy), #f5841f (orange accent)
   =================================================================== */

:root {
  --green: #45bb12;
  --green-dark: #379a0c;
  --green-soft: #eaf7e2;
  --navy: #203555;
  --navy-dark: #16243b;
  --navy-soft: #eef2f8;
  --orange: #f5841f;
  --orange-dark: #db6f0c;
  --orange-soft: #fff2e4;
  --ink: #21303f;
  --muted: #5d6b7a;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-alt: #f6f9fc;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(32, 53, 85, 0.06);
  --shadow: 0 14px 40px rgba(32, 53, 85, 0.12);
  --maxw: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { color: var(--navy); line-height: 1.18; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); margin-bottom: .65rem;
}
.eyebrow.orange { color: var(--orange); }

.section { padding: 128px 0; }
.section.tight { padding: 84px 0; }
.section.alt { background: var(--bg-alt); }
.section.navy { background: var(--navy); }
.section.navy h1, .section.navy h2, .section.navy h3 { color: #fff; }
.section.navy p { color: #c7d2e2; }
.section-head { max-width: 680px; margin: 0 auto 76px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-weight: 700; font-size: 1rem; padding: 13px 26px; border-radius: 999px;
  border: 2px solid transparent; transition: .18s ease; text-align: center; line-height: 1.1;
}
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: #fff; color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.topbar { background: var(--navy); color: #dfe7f2; font-size: 1rem; font-weight: 700; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap; }
.topbar a { color: #dfe7f2; }
.topbar a:hover { color: var(--green); }
.topbar .tb-group { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar .tb-group span { display: inline-flex; align-items: center; gap: 6px; }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.brand { display: flex; align-items: center; }
.brand svg, .brand img { height: 54px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; color: var(--navy); font-size: .96rem; position: relative; white-space: nowrap; }
.nav-links a.active, .nav-links a:hover { color: var(--green); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; background: var(--green); border-radius: 3px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; transition: .2s; }
.lang-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-family: inherit; font-weight: 700; font-size: .88rem; padding: 9px 14px; border-radius: 999px; border: 2px solid var(--green); background: var(--green-soft); color: var(--green-dark); transition: .18s; white-space: nowrap; }
.lang-toggle:hover { background: var(--green); color: #fff; }
@media (max-width: 720px) { .lang-toggle { padding: 7px 11px; font-size: .8rem; } }

/* ---------- Hero banner (reference banner style) ---------- */
.hero-banner { position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #f1f7fb 100%); padding-top: 56px; }
.hero-banner .container { position: relative; z-index: 2; }
.hb-main { display: grid; grid-template-columns: 1.04fr .96fr; gap: 36px; align-items: end; }
.hb-copy { padding-bottom: 46px; }
.hb-copy .eyebrow { margin-bottom: 16px; }
.hb-copy h1 { font-size: clamp(2.3rem, 4.8vw, 3.7rem); line-height: 1.03; margin: 0; font-weight: 800; letter-spacing: -.02em; }
.hb-copy h1 .b { color: var(--navy); display: block; }
.hb-copy h1 .g { color: var(--green); display: block; }
.hb-accent { width: 66px; height: 5px; background: var(--green); border-radius: 3px; margin: 20px 0 22px; }
.hb-copy p { font-size: 1.12rem; color: var(--muted); max-width: 430px; margin: 0 0 28px; }
.hb-cta { display: inline-flex; align-items: center; gap: 11px; background: var(--green); color: #fff; font-weight: 700; font-size: 1.05rem; padding: 15px 30px; border-radius: 12px; border: 2px solid var(--green); transition: .18s; }
.hb-cta:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); }
.hb-cta svg { flex: none; }
.hb-photo { position: relative; align-self: end; }
.hb-photo .hb-img {
  position: relative; z-index: 1; width: 100%; min-height: 480px; height: 100%;
  background-position: center top; background-repeat: no-repeat; background-size: cover;
  -webkit-mask-image: radial-gradient(68% 80% at 53% 40%, #000 22%, rgba(0,0,0,.45) 52%, rgba(0,0,0,0) 76%);
          mask-image: radial-gradient(68% 80% at 53% 40%, #000 22%, rgba(0,0,0,.45) 52%, rgba(0,0,0,0) 76%);
}
/* soft brand glow behind the faded photo */
.hb-photo::before { content: ""; position: absolute; inset: 6% 2% 8% 8%; z-index: 0; background: radial-gradient(ellipse at center, rgba(69,187,18,.12), rgba(32,53,85,.05) 60%, transparent 72%); }
/* decorative crosses + dots */
.hb-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hb-deco .x { position: absolute; opacity: .5; }
.hb-deco .x1 { top: 8%; left: 44%; }
.hb-deco .x2 { top: 40%; left: 36%; }
.hb-deco .x3 { top: 60%; left: 40%; }
.hb-deco .dots { position: absolute; top: 12%; left: 1.5%; }
/* feature row */
.hb-features { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 6px; padding: 22px 0 64px; position: relative; z-index: 2; }
.hb-feat { text-align: center; padding: 0 16px; border-left: 1px solid var(--line); }
.hb-feat:first-child { border-left: 0; }
.hb-feat .ic { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--green); display: grid; place-items: center; margin: 0 auto 12px; color: var(--navy); }
.hb-feat:nth-child(2) .ic, .hb-feat:nth-child(4) .ic { border-color: var(--navy); }
.hb-feat:nth-child(2) .ic { color: var(--green); }
.hb-feat span { display: block; font-weight: 700; color: var(--navy); font-size: .96rem; line-height: 1.25; }
/* bottom wave */
.hb-wave { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; line-height: 0; }
.hb-wave svg { display: block; width: 100%; height: auto; }
@media (max-width: 860px) {
  .hb-main { grid-template-columns: 1fr; gap: 0; }
  .hb-photo { order: 2; min-height: 280px; }
  .hb-photo .hb-img { min-height: 300px; }
  .hb-copy { padding-bottom: 8px; }
  .hb-features { grid-template-columns: repeat(2, 1fr); gap: 26px 0; padding-bottom: 80px; }
  .hb-feat:nth-child(3) { border-left: 0; }
}
@media (max-width: 480px) { .hb-features { grid-template-columns: 1fr; } .hb-feat { border-left: 0; } }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, #eef2f8 0%, #eaf7e2 100%); position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; padding-top: 116px; padding-bottom: 116px; }
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy h1 .accent { color: var(--green); }
.hero-copy .lead { font-size: 1.15rem; color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--muted); font-size: .95rem; }
.hero-trust strong { color: var(--navy); font-size: 1.4rem; }
.hero-art { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; border: 1px solid var(--line);
}
.hero-card h3 { color: var(--navy); }
.hero-card .row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.hero-card .ico.orange { background: var(--orange-soft); color: var(--orange); }
.hero-card .ico.navy { background: var(--navy-soft); color: var(--navy); }

/* ---------- Hero photo slider (banner) ---------- */
.hero-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 4; background: var(--navy-soft); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; animation: heroKen 6.5s ease-out both; }
@keyframes heroKen { from { transform: scale(1.05); } to { transform: scale(1.13); } }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,53,85,0) 60%, rgba(32,53,85,.28) 100%); }
.hs-dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.hs-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.6); transition: .2s; }
.hs-dots button.active { background: #fff; width: 22px; border-radius: 5px; }
@media (prefers-reduced-motion: reduce) { .hero-slide.active { animation: none; } }

/* ---------- Page banner (interior pages) ---------- */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 60px 0; }
.page-banner h1 { color: #fff; margin-bottom: .3em; }
.page-banner p { color: #c7d2e2; max-width: 640px; margin: 0; }
/* Photo hero banner (interior pages) */
.page-banner.has-photo { position: relative; overflow: hidden; padding: 96px 0; background: var(--navy-dark); }
.page-banner.has-photo .pb-photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .55; animation: heroKen 11s ease-out both; }
.page-banner.has-photo .pb-overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(22,36,59,.93) 0%, rgba(32,53,85,.72) 52%, rgba(55,154,12,.45) 100%); }
.page-banner.has-photo .container { position: relative; z-index: 2; }
.crumbs { font-size: .9rem; color: #9fb1cc; margin-bottom: 14px; }
.crumbs a { color: #9fb1cc; }
.crumbs a:hover { color: var(--green); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 38px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px;
  box-shadow: var(--shadow-sm); transition: .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6deea; }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card .ico.orange { background: var(--orange-soft); color: var(--orange); }
.card .ico.navy { background: var(--navy-soft); color: var(--navy); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: .6rem; font-size: .98rem; }
.card .more { font-weight: 700; color: var(--green); font-size: .95rem; }
.card.accent-top { border-top: 4px solid var(--green); }
.card.accent-top.orange { border-top-color: var(--orange); }

/* ---------- Promo banner cards (image + text) ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.promo-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s ease; display: flex; flex-direction: column; }
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.promo-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-color: var(--navy-soft); background-repeat: no-repeat; }
.promo-card.c1 .promo-img { background-color: #e3f0d8; }
.promo-card.c2 .promo-img { background-color: #dfeaf6; }
.promo-card.c3 .promo-img { background-color: #fde7d6; }
.promo-card.c4 .promo-img { background-color: #e2f1ef; }
.promo-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.promo-body h3 { font-size: 1.1rem; margin: 0; }
.promo-body p { color: var(--muted); font-size: .94rem; margin: 0; flex: 1; }
.promo-body .btn { margin-top: 10px; align-self: flex-start; padding: 10px 20px; font-size: .92rem; }
@media (max-width: 960px) { .promo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promo-grid { grid-template-columns: 1fr; } }

/* ---------- Featured slideshow ---------- */
.fslider { position: relative; }
.fs-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.fs-track { display: flex; transition: transform .55s cubic-bezier(.4,.0,.2,1); }
.fs-slide { min-width: 100%; }
.fs-card { display: grid; grid-template-columns: 1.05fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.fs-media { background-size: cover; background-position: center; background-color: var(--navy-soft); min-height: 340px; }
.fs-content { padding: 40px 42px 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.fs-content h3 { font-size: 1.6rem; margin: 0; color: var(--navy); }
.fs-content p { color: var(--muted); margin: 0; font-size: 1.02rem; }
.fs-price { display: inline-block; align-self: flex-start; background: var(--green); color: #fff; font-weight: 700; padding: 7px 16px; border-radius: 999px; font-size: .98rem; }
.fs-content .btn { align-self: flex-start; margin-top: 6px; }
.fs-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(32,53,85,.85); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: .2s ease; }
.fs-arrow:hover { background: var(--green); }
.fs-arrow.prev { left: 16px; }
.fs-arrow.next { right: 16px; }
.fs-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.fs-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: #cdd9ec; cursor: pointer; padding: 0; transition: .2s ease; }
.fs-dots button.active { background: var(--green); width: 28px; border-radius: 6px; }
@media (max-width: 760px) {
  .fs-card { grid-template-columns: 1fr; }
  .fs-media { min-height: 220px; }
  .fs-content { padding: 26px 24px 30px; }
  .fs-content h3 { font-size: 1.35rem; }
  .fs-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .fs-arrow.prev { left: 8px; }
  .fs-arrow.next { right: 8px; }
}

/* ---------- Our Doctors ---------- */
.docs-head { display: flex; align-items: center; gap: 26px; margin-bottom: 44px; }
.docs-head::before, .docs-head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.docs-head span { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--navy); white-space: nowrap; }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px 24px; text-align: center; }
.doc h3 { margin: 0 0 5px; font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.doc p { margin: 0; color: var(--muted); font-size: 1rem; }
.doc p.spec-orange { color: var(--orange); }
@media (max-width: 760px) { .docs-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; } }
@media (max-width: 460px) { .docs-grid { grid-template-columns: 1fr; } }
.docs-cta { text-align: center; margin-top: 44px; }

/* ---------- Age-group vaccine lists ---------- */
.age-list { list-style: none; padding: 0; margin: 8px 0 0; }
.age-list li { position: relative; padding: 7px 0 7px 24px; color: var(--ink); border-bottom: 1px solid var(--line); font-size: .96rem; }
.age-list li:last-child { border-bottom: none; }
.age-list li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { display: flex; gap: 12px; padding: 12px 0; color: var(--ink); }
.checklist li svg { flex: none; color: var(--green); margin-top: 3px; }

/* ---------- Icon-card (illustrative media block) ---------- */
.media-illus {
  background: linear-gradient(150deg, var(--green-soft), var(--navy-soft));
  border-radius: var(--radius-lg); padding: 40px; display: grid; place-items: center; min-height: 320px; border: 1px solid var(--line);
}
.media-illus svg { width: 100%; max-width: 340px; height: auto; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .stat strong { display: block; font-size: 2.2rem; color: #fff; font-weight: 800; }
.stats .stat span { color: #b9c6da; font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #eafbe0; max-width: 620px; margin: 0 auto 24px; }
.cta-band .btn-orange:hover { background: #fff; color: var(--orange-dark); border-color: #fff; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--navy); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink);
  background: #fcfdff; transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.field textarea { min-height: 110px; resize: vertical; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e0463a; box-shadow: 0 0 0 3px #fbe3e1; }
.field .err { display: none; color: #d23a2c; font-size: .82rem; margin-top: 5px; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { width: auto; margin-top: 4px; flex: none; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none; background: var(--green-soft); border: 1px solid var(--green); color: var(--navy);
  border-radius: 12px; padding: 18px 20px; margin-bottom: 18px; font-weight: 500;
}
.form-success.show { display: block; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

/* ---------- Destination selector ---------- */
.selector { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.selector h3 { margin-bottom: 6px; }
.step-label { font-weight: 700; color: var(--green); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin: 18px 0 10px; }
.continent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.continent-btn {
  border: 1.5px solid var(--line); background: #fcfdff; border-radius: 12px; padding: 16px 12px; cursor: pointer;
  font-weight: 700; color: var(--navy); font-size: .95rem; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: .15s;
}
.continent-btn:hover { border-color: var(--green); background: var(--green-soft); }
.continent-btn.active { border-color: var(--green); background: var(--green); color: #fff; }
.continent-btn .emoji { font-size: 1.5rem; }
.country-panel { margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--line); display: none; }
.country-panel.show { display: block; }
.country-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.country-chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 16px; cursor: pointer;
  font-weight: 600; font-size: .9rem; color: var(--navy); transition: .15s;
}
.country-chip:hover { border-color: var(--orange); color: var(--orange); }
.country-chip.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.guidance-out { margin-top: 22px; display: none; }
.guidance-out.show { display: block; }
.vac-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 4px; }
.vac-item { display: inline-flex; align-items: center; gap: 8px; background: var(--green-soft); color: #2c5417; border: 1px solid #bfe6a9; border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: .92rem; }
.vac-item svg { color: var(--green); flex: none; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.data { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.data th { background: var(--navy); color: #fff; text-align: left; padding: 14px 18px; font-size: .9rem; font-weight: 700; }
table.data td { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--ink); font-size: .95rem; vertical-align: top; }
table.data tr:nth-child(even) td { background: var(--bg-alt); }
table.data td:first-child { font-weight: 700; color: var(--navy); }

/* ---------- Notice / disclaimer ---------- */
.notice { border-radius: 12px; padding: 18px 22px; font-size: .95rem; }
.notice.green { background: var(--green-soft); border: 1px solid #bfe6a9; color: #2c5417; }
.notice.orange { background: var(--orange-soft); border: 1px solid #f5cd9e; color: #8a4a0a; }
.notice.navy { background: var(--navy-soft); border: 1px solid #cdd9ec; color: var(--navy); }
.notice strong { display: block; margin-bottom: 3px; }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; box-shadow: var(--shadow-sm); }
.step .num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800;
  display: grid; place-items: center; margin-bottom: 14px; font-size: 1.1rem;
}
.step:nth-child(2) .num { background: var(--orange); }
.step:nth-child(3) .num { background: var(--navy); }
.step:nth-child(4) .num { background: var(--green-dark); }
.step h3 { font-size: 1.08rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Info / contact tiles ---------- */
.info-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.info-tile .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 14px; }
.info-tile .ico.orange { background: var(--orange-soft); color: var(--orange); }
.info-tile .ico.navy { background: var(--navy-soft); color: var(--navy); }
.info-tile h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.info-tile p, .info-tile a { color: var(--muted); font-size: .95rem; margin: 0; }
.info-tile a:hover { color: var(--green); }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { color: var(--navy); font-weight: 600; }
.hours-list li span:last-child { color: var(--muted); }
.hours-list li.closed span:last-child { color: var(--orange); font-weight: 600; }

.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-weight: 700; color: var(--navy); cursor: pointer; font-size: 1rem; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq-q .chev { transition: .2s; color: var(--green); flex: none; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 18px; color: var(--muted); font-size: .96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #b9c6da; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-logo { background: #fff; border-radius: 12px; padding: 14px 16px; display: inline-block; margin-bottom: 16px; }
.footer-logo svg, .footer-logo img { height: 50px; width: auto; display: block; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #b9c6da; font-size: .94rem; }
.site-footer a:hover { color: var(--green); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: .86rem; color: #8a99b3; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-disclaimer { font-size: .82rem; color: #7d8da8; padding-bottom: 18px; line-height: 1.55; }

/* ===== Footer style variants ===== */
.footer-contact .nofax { padding-left: 28px; }

/* Large-type footer (Home, Contact) */
.ft-large .ftl-kicker { color: var(--green); text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; font-weight: 700; margin: 0; }
.ft-large .ftl-big { font-size: clamp(2.5rem, 7vw, 5.4rem); font-weight: 800; color: #fff; line-height: 1.03; letter-spacing: -.02em; margin: 12px 0 34px; }
.ft-large .ftl-big span { color: var(--green); }
.ft-large .ftl-cols { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; }
.ft-large .ftl-links { display: flex; flex-direction: column; gap: 12px; }
.ft-large .ftl-links a { font-size: 1.02rem; font-weight: 500; }
.ft-large .ftl-contact { max-width: 360px; }

/* Negative footer (Immunization, Travel Clinic) */
.ft-negative { overflow: hidden; }
.ft-negative .ftn-cols { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ft-negative .ftn-links { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.ft-negative .ftn-links a { font-size: 1rem; font-weight: 500; }
.ft-negative .ftn-brand { font-weight: 800; text-align: center; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.30); font-size: clamp(3rem, 17vw, 13rem); line-height: .86; letter-spacing: .03em; margin: 30px 0 4px; user-select: none; white-space: nowrap; }
.ft-negative .footer-contact svg { color: var(--green); }

/* Silhouette footer (Services) */
.ft-silhouette { position: relative; overflow: hidden; }
.ft-silhouette .fts-illus { position: absolute; right: -24px; top: 50%; transform: translateY(-50%); width: min(46%, 520px); color: #fff; opacity: .06; pointer-events: none; }
.ft-silhouette .fts-illus svg { width: 100%; height: auto; display: block; fill: currentColor; }
.ft-silhouette .container { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .ft-large .ftl-big { font-size: clamp(2rem, 11vw, 3rem); }
  .ft-negative .ftn-brand { -webkit-text-stroke-width: 1.4px; }
  .ft-silhouette .fts-illus { opacity: .04; }
}

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; background: var(--green); color: #fff;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow);
  transition: .2s;
}
.float-call:hover { background: var(--green-dark); color: #fff; transform: scale(1.06); }

/* ---------- Images / media ---------- */
.media-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.media-img img, .media-img > svg { display: block; width: 100%; height: auto; }
.media-img.hoverable img { transition: transform .6s ease; }
.media-img.hoverable:hover img { transform: scale(1.04); }
/* decorative blob behind illustrations */
.illus-wrap { position: relative; }
.illus-wrap::before { content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%; background: var(--orange-soft); border-radius: var(--radius-lg); z-index: 0; }
.illus-wrap::after { content: ""; position: absolute; inset: -16px auto auto -16px; width: 40%; height: 40%; background: var(--green-soft); border-radius: 50%; z-index: 0; }
.illus-wrap > * { position: relative; z-index: 1; }
.badge-float {
  position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: .92rem;
}
.badge-float .dot { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-size: 1.1rem; }
.badge-float.tl { top: 18px; left: -22px; }
.badge-float.br { bottom: 22px; right: -22px; }
.badge-float small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; } .reveal.d3 { transition-delay: .27s; }
.reveal.zoom { transform: scale(.94); } .reveal.zoom.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Animated stats band ---------- */
.stats-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; }
.stats-band .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .stat { padding: 8px; }
.stats-band .stat strong { display: block; font-size: 2.6rem; color: #fff; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.stats-band .stat .suffix { color: var(--green); }
.stats-band .stat span { display: block; color: #b9c6da; font-size: .96rem; margin-top: 8px; }

/* ---------- Testimonials carousel ---------- */
.testi { position: relative; max-width: 860px; margin: 0 auto; }
.testi-track { position: relative; min-height: 220px; }
.testi-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px 44px; text-align: center; pointer-events: none;
}
.testi-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.testi-stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.1rem; }
.testi-quote { font-size: 1.18rem; color: var(--ink); line-height: 1.6; margin-bottom: 22px; }
.testi-who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-ava { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testi-name { font-weight: 700; color: var(--navy); }
.testi-role { color: var(--muted); font-size: .88rem; }
.testi-dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.testi-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #cdd6e2; cursor: pointer; padding: 0; transition: .2s; }
.testi-dots button.active { background: var(--green); width: 26px; border-radius: 6px; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 86px; z-index: 60; width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; transition: .25s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--navy-dark); }

/* ---------- Parallax photo bands (decorative, no text) ---------- */
.photo-band {
  position: relative; width: 100%; overflow: hidden;
  height: clamp(260px, 34vw, 440px);
  background: linear-gradient(120deg, var(--navy) 0%, var(--green-dark) 100%);
}
.photo-band .pb-img {
  position: absolute; inset: -4%; background-size: cover; background-position: center;
  animation: kenburns 26s ease-in-out infinite alternate; will-change: transform;
}
.photo-band .pb-tint {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(32,53,85,.58) 0%, rgba(55,154,12,.42) 100%);
}
.photo-band.light .pb-tint { background: linear-gradient(120deg, rgba(32,53,85,.40) 0%, rgba(245,132,31,.30) 100%); }
.photo-band .pb-deco {
  position: absolute; inset: 0; z-index: 2; opacity: .42;
  -webkit-mask-image: radial-gradient(130% 130% at 50% 45%, #000 20%, rgba(0,0,0,0) 84%);
          mask-image: radial-gradient(130% 130% at 50% 45%, #000 20%, rgba(0,0,0,0) 84%);
}
.photo-band .pb-deco svg { width: 100%; height: 100%; display: block; }
@keyframes kenburns { from { transform: scale(1.05) translate(0,0); } to { transform: scale(1.16) translate(-2.5%,-2%); } }
@media (prefers-reduced-motion: reduce) { .photo-band .pb-img { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-tiles { grid-template-columns: 1fr; }
  .continent-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .badge-float.tl { left: 8px; } .badge-float.br { right: 8px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 18px 22px; gap: 14px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open a.active::after { display: none; }
  .site-header { position: relative; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .continent-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section.tight { padding: 48px 0; }
  .cta-band, .form-card { padding: 28px 22px; }
  .topbar .tb-group.secondary { display: none; }
  .stats-band .stats { grid-template-columns: repeat(2, 1fr); }
  .testi-slide { padding: 28px 22px; }
  .badge-float { display: none; }
}

/* ---------- Mobile header refinements (mobile view only) ---------- */
@media (max-width: 720px) {
  .nav { padding: 10px 0; gap: 12px; }
  .brand svg, .brand img { height: 42px; }
  .nav-cta .btn-orange { display: none; }        /* remove Book Appointment on mobile */
  .nav-cta { gap: 10px; }
  .topbar { font-size: .82rem; }
  .topbar .container { justify-content: center; }
}
@media (max-width: 480px) {
  .nav { gap: 8px; }
  .brand svg, .brand img { height: 34px; }
  .lang-toggle { padding: 6px 9px; font-size: .76rem; }
  .topbar .tb-group span { font-size: .78rem; }
}
@media (max-width: 380px) {
  .brand svg, .brand img { height: 30px; }
}

/* Contact "Call or Text" tile: show "Call:" label on mobile only */
.call-label { display: none; }
@media (max-width: 720px) { .call-label { display: inline; } }
