/* ============================================================
   INDIAHEALZ — Main Stylesheet v2
   Medical tourism facilitator — connecting international patients with India's top hospitals
   Mobile-first responsive design
   ============================================================ */

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  --blue:       #1A6FBF;
  --blue-dark:  #155a9c;
  --blue-light: #e8f1fb;
  --green:      #27AE60;
  --green-dark: #1e8e4f;
  --amber:      #F39C12;
  --amber-dark: #d4890f;
  --whatsapp:   #25D366;
  --whatsapp-dark: #1da851;
  --white:      #FFFFFF;
  --grey-bg:    #F8F9FA;
  --grey-light: #e9ecef;
  --grey-mid:   #adb5bd;
  --text:       #1a2332;
  --text-muted: #5a6a7a;
  --border:     #e2e8f0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07);
  --shadow:     0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --max-width:  1140px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.22s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section      { padding: 5rem 0; }
.section-sm   { padding: 3rem 0; }
.section-lg   { padding: 6.5rem 0; }
.section-grey { background: var(--grey-bg); }
.section-blue { background: var(--blue); color: var(--white); }
.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue p { color: var(--white); }

.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.mt-0 { margin-top: 0; }    .mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: .75rem;
  background: var(--blue-light);
  padding: .3rem .75rem;
  border-radius: 100px;
}
.section-title { margin-bottom: .75rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.section-title + .section-subtitle { margin-top: .6rem; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── Grid Helpers ───────────────────────────────────────────── */
.grid   { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover {
  background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-whatsapp {
  background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp);
  font-size: 1rem; padding: .9rem 1.85rem;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.38);
}
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: var(--white); transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15); color: var(--white); border-color: var(--white);
}
.btn-lg  { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-sm  { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-xs  { padding: .4rem .8rem; font-size: .78rem; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}
.site-logo { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; text-decoration: none; }
.site-logo .logo-text { font-size: 1.45rem; font-weight: 800; color: var(--blue); line-height: 1; }
.site-logo .logo-text span { color: var(--green); }
.site-logo img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav > li { position: relative; }
.site-nav > li > a {
  display: block; padding: .55rem .85rem; font-size: .9rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius); transition: all var(--transition); white-space: nowrap;
}
.site-nav > li > a:hover,
.site-nav > li.current-menu-item > a,
.site-nav > li.current-menu-ancestor > a { color: var(--blue); background: var(--blue-light); }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: '▾'; font-size: .7rem; margin-left: .3rem; display: inline-block; transition: transform var(--transition); }
.has-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + .35rem); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 210px; padding: .5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 100;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: .6rem 1.1rem; font-size: .875rem; color: var(--text); transition: all var(--transition); }
.dropdown-menu li a:hover { background: var(--grey-bg); color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header-whatsapp { display: flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--whatsapp-dark); text-decoration: none; }
.header-whatsapp:hover { color: var(--whatsapp); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO SECTIONS ──────────────────────────────────────────── */
/* Full-width hero with background image */
.hero-fullwidth {
  position: relative; overflow: hidden;
  min-height: 580px;
  display: flex; align-items: flex-end;
  padding: 0 0 2rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,36,65,.45) 0%, rgba(10,36,65,.82) 100%);
  z-index: 1;
}
.hero-fullwidth .container { position: relative; z-index: 2; width: 100%; }
.hero-fw-content {
  max-width: 680px; padding: 6rem 0 2.5rem;
}
.hero-fw-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  color: #fff; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .45rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,.2);
}
.hero-fw-content h1 {
  color: #fff; font-size: 2.8rem; font-weight: 800;
  line-height: 1.15; margin-bottom: 1.3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-fw-sub {
  color: rgba(255,255,255,.9); font-size: 1.15rem;
  line-height: 1.75; margin-bottom: 2.25rem; max-width: 580px;
}
.hero-fw-cta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem;
}
/* Hero badge strip — sits at the bottom of hero */
.hero-fw-badges {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  margin-top: 1rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-fw-badge {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: .75rem 1.2rem;
}
.hero-fw-badge-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.18); color: #fff; flex-shrink: 0;
}
.hero-fw-badge-icon svg { stroke: #fff; }
.hero-fw-badge-text { color: rgba(255,255,255,.9); font-size: .88rem; line-height: 1.3; }
.hero-fw-badge-text strong { color: #fff; font-weight: 700; display: block; font-size: .95rem; }

/* Legacy hero (fallback) */
.hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(135deg, #f0f7ff 0%, var(--white) 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,111,191,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { max-width: 560px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue-light); color: var(--blue);
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero h1 { margin-bottom: 1.3rem; color: var(--text); }
.hero .hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.25rem; line-height: 1.75; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-note { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }
.hero-note::before { content: '🔒'; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; max-height: 460px; object-fit: cover; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--grey-light); }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.6rem; font-weight: 800; color: var(--blue); line-height: 1; }
.hero-stat span { font-size: .78rem; color: var(--text-muted); margin-top: .25rem; }
.hero-sm {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center;
}
.hero-sm h1, .hero-sm p { color: var(--white); }
.hero-sm h1 { margin-bottom: .85rem; }
.hero-sm .hero-sub { margin: 0 auto 1.75rem; max-width: 620px; opacity: .9; }
.hero-sm .breadcrumb { justify-content: center; margin-bottom: 1.25rem; }

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip { padding: 2.5rem 0; background: var(--grey-bg); border-bottom: 1px solid var(--border); }
.trust-strip-label {
  text-align: center; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted); margin-bottom: 1.75rem;
}
.hospital-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem 2rem; margin-bottom: 2rem; }
.hospital-logo-item { display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; color: var(--text-muted); opacity: .6; transition: opacity var(--transition); height: 38px; }
.hospital-logo-item:hover { opacity: 1; }
.hospital-logo-item img { height: 38px; width: auto; filter: grayscale(1); }
.hospital-logo-item:hover img { filter: grayscale(0); }
.logo-pill { background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: .45rem 1rem; font-size: .8rem; font-weight: 700; color: var(--text-muted); letter-spacing: .03em; }
.trust-badges { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.75rem; }
.trust-badge { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--text); }
.trust-badge .badge-icon { font-size: 1.3rem; }
.trust-badge .badge-text { color: var(--text-muted); }

/* ─── HOSPITAL LOGO GRID (About/Trust sections) ──────────────── */
.hospital-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.hospital-partner-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}
.hospital-partner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.hospital-partner-img {
  width: 100%; height: 140px; object-fit: cover;
  display: block; filter: brightness(.95);
}
.hospital-partner-body { padding: 1rem; }
.hospital-partner-body h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.hospital-partner-body span { font-size: .75rem; color: var(--text-muted); }
.hospital-partner-badges { display: flex; gap: .3rem; justify-content: center; margin-top: .5rem; flex-wrap: wrap; }

/* ─── STEPS / HOW IT WORKS ───────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 28px;
  left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--green)); z-index: 0;
}
.step-card { text-align: center; padding: 2.25rem 1.75rem; position: relative; z-index: 1; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.step-number { width: 58px; height: 58px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; box-shadow: 0 0 0 5px var(--blue-light); }
.step-card h3 { margin-bottom: .65rem; }
.step-card p { color: var(--text-muted); font-size: .95rem; }

/* Vertical steps (for detail pages) */
.steps-vertical { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.step-vertical { display: grid; grid-template-columns: 64px 1fr; gap: 1.75rem; padding-bottom: 2.75rem; position: relative; }
.step-vertical:not(:last-child)::before { content: ''; position: absolute; left: 31px; top: 58px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue-light), var(--grey-light)); }
.step-vertical-num { width: 58px; height: 58px; background: var(--blue); color: var(--white); border-radius: 50%; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 0 5px var(--blue-light); }
.step-vertical-content { padding-top: .75rem; }
.step-vertical-content h4 { margin-bottom: .4rem; font-size: 1rem; color: var(--blue); }
.step-vertical-content p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin: 0; }

/* ─── PATIENT JOURNEY INFOGRAPHIC ────────────────────────────── */
.journey-infographic {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin: 3rem 0; flex-wrap: nowrap; overflow-x: auto; padding: 1rem 0;
}
.journey-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 110px; max-width: 150px; position: relative; }
.journey-step:not(:last-child)::after {
  content: ''; position: absolute; top: 28px; left: 60%; width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green)); z-index: 0;
}
.journey-step-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(26,111,191,.3); position: relative; z-index: 1; margin-bottom: .85rem;
}
.journey-step-label { font-size: .78rem; font-weight: 700; color: var(--text); line-height: 1.3; padding: 0 .5rem; }
.journey-step-sublabel { font-size: .7rem; color: var(--text-muted); margin-top: .2rem; padding: 0 .5rem; }

/* ─── CARDS (Generic) ────────────────────────────────────────── */
.card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.card h3 { margin-bottom: .65rem; }
.card p { color: var(--text-muted); font-size: .95rem; }

/* Feature cards (Why India) */
.feature-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition); border-top: 3px solid var(--blue);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card .feature-icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.15rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* Treatment cards */
.treatment-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-decoration: none; display: block; transition: all var(--transition);
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); color: var(--text); }
.treatment-card .t-icon { font-size: 2.4rem; margin-bottom: .85rem; display: block; }
.treatment-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; color: var(--text); }
.treatment-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.treatment-card .t-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .82rem; font-weight: 600; color: var(--blue); margin-top: .85rem; }

/* ─── HOSPITAL CARDS (v2 — Image-First) ──────────────────────── */
.hospital-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.hospital-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }

/* Hospital card image area */
.hospital-card-image {
  position: relative; height: 200px; overflow: hidden; background: var(--blue-light);
}
.hospital-card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.hospital-card:hover .hospital-card-image img { transform: scale(1.04); }
.hospital-card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.55) 100%);
  display: flex; align-items: flex-end; padding: 1rem 1.25rem;
}
.hospital-logo-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  flex-shrink: 0;
}

/* Hospital card content */
.hospital-card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.hospital-card-name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0; line-height: 1.3; }
.hospital-card-meta {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.hospital-card-location {
  display: flex; align-items: center; gap: .3rem;
  font-size: .8rem; color: var(--text-muted); font-weight: 500;
}
.hospital-card-location svg { flex-shrink: 0; }
.hospital-card-badges { display: flex; gap: .35rem; flex-wrap: wrap; }

/* Badges */
.badge-nabh   { font-size: .68rem; font-weight: 700; padding: .22rem .55rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .03em; background: #e8f5e9; color: #2e7d32; }
.badge-jci    { font-size: .68rem; font-weight: 700; padding: .22rem .55rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .03em; background: #e3f2fd; color: #1565c0; }
.badge-premium{ font-size: .68rem; font-weight: 700; padding: .22rem .55rem; border-radius: 5px; text-transform: uppercase; background: #fff8e1; color: #e65100; }
.badge-mid    { font-size: .68rem; font-weight: 700; padding: .22rem .55rem; border-radius: 5px; text-transform: uppercase; background: #f3e5f5; color: #6a1b9a; }
.badge-budget { font-size: .68rem; font-weight: 700; padding: .22rem .55rem; border-radius: 5px; text-transform: uppercase; background: #e8f5e9; color: #2e7d32; }

/* Specialty list inside cards */
.hospital-specialties {
  display: flex; flex-direction: column; gap: .4rem; flex: 1;
}
.hospital-specialties li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .875rem; color: var(--text-muted);
}
.hospital-specialties li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

.hospital-highlight {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--blue); font-weight: 600;
  background: var(--blue-light); padding: .5rem .85rem; border-radius: 8px;
}
.hospital-highlight::before { content: '🌍'; }

.hospital-card-footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
}
.hospital-card-footer .btn { flex: 1; justify-content: center; }
.hospital-cost { font-size: .8rem; color: var(--text-muted); }
.hospital-cost strong { color: var(--blue); }

/* Legacy hospital card header (treatment pages) */
.hospital-card-header {
  padding: 0 0 1rem; display: flex; flex-direction: column; gap: .5rem;
}
.hospital-name { font-size: 1rem; font-weight: 700; margin-bottom: 0; }
.hospital-location { font-size: .82rem; color: var(--text-muted); }
.hospital-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.hospital-card-body { flex: 1; padding-bottom: .5rem; }
.hospital-card-body ul { display: flex; flex-direction: column; gap: .38rem; }
.hospital-card-body li {
  font-size: .875rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: .5rem;
  padding-left: 0;
}
/* IMPORTANT: Remove pseudo-element checkmark — HTML already supplies the icon */
.hospital-card-body li::before { display: none; }

/* ─── TEAM SECTION ───────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; max-width: 780px; margin: 0 auto;
}
.team-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--transition); text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.team-photo { position: relative; }
.team-photo img {
  width: 100%; height: 280px; object-fit: cover; object-position: top center; display: block;
}
.team-body { padding: 1.75rem 1.5rem; }
.team-name { font-size: 1.2rem; font-weight: 800; margin-bottom: .25rem; color: var(--text); }
.team-role { font-size: .85rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.team-bio { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; color: #0077B5;
  border: 1.5px solid #0077B5; padding: .45rem 1rem; border-radius: 8px;
  transition: all var(--transition); text-decoration: none;
}
.team-linkedin:hover { background: #0077B5; color: var(--white); transform: translateY(-1px); }

/* ─── TESTIMONIAL CARDS ──────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem; position: relative;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.testimonial-stars { color: var(--amber); font-size: 1rem; letter-spacing: .15rem; margin-bottom: 1rem; }
.testimonial-quote { font-size: .95rem; color: var(--text); line-height: 1.75; flex: 1; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; padding-top: 1.25rem; border-top: 1px solid var(--grey-light); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--blue);
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-info strong { display: block; font-size: .9rem; font-weight: 700; }
.testimonial-author-info span { font-size: .78rem; color: var(--text-muted); }
.testimonial-verified { display: flex; align-items: center; gap: .3rem; font-size: .75rem; color: var(--green); font-weight: 600; margin-top: .2rem; }

/* ─── ACCOMMODATION CARDS ────────────────────────────────────── */
.accommodation-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.accommodation-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.accommodation-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.accommodation-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.accommodation-card-img {
  width: 100%; height: 170px; object-fit: cover; display: block;
}
.accommodation-card-body { padding: 1.25rem; flex: 1; }
.accommodation-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; color: var(--blue); }
.accommodation-card-near { font-size: .78rem; color: var(--text-muted); font-weight: 500; margin-bottom: .6rem; display: flex; align-items: center; gap: .3rem; }
.accommodation-card-near::before { content: '📍'; font-size: .8rem; }
.accommodation-card-body p { font-size: .875rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ─── PRACTICAL TIPS ─────────────────────────────────────────── */
.tips-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.tip-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 1rem; border-bottom: 1px solid var(--border);
  transition: background var(--transition); border-radius: var(--radius);
}
.tip-item:last-child { border-bottom: none; }
.tip-item:hover { background: var(--grey-bg); }
.tip-item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.tip-item-content { flex: 1; }
.tip-item-content h4 { font-size: .97rem; font-weight: 700; margin-bottom: .3rem; color: var(--text); }
.tip-item-content p { font-size: .875rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* Legacy tip-card (keep for backward compat) */
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.tip-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.tip-card .tip-icon { font-size: 1.6rem; flex-shrink: 0; }
.tip-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.tip-card strong { display: block; font-size: .92rem; margin-bottom: .25rem; color: var(--text); }

/* ─── COUNTRIES STRIP ────────────────────────────────────────── */
.countries-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.country-item {
  display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .925rem;
  color: var(--text); text-decoration: none; padding: .6rem 1rem;
  border-radius: var(--radius); transition: all var(--transition); border: 1.5px solid var(--border);
  background: var(--white);
}
.country-item:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.country-item .flag { font-size: 1.5rem; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .6rem; max-width: 820px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question {
  width: 100%; background: var(--white); border: none;
  padding: 1.2rem 1.6rem; text-align: left; font-size: .95rem; font-weight: 600;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--grey-bg); }
.faq-question.active { background: var(--blue-light); color: var(--blue); }
.faq-toggle {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grey-light); display: flex; align-items: center;
  justify-content: center; font-size: .78rem; transition: all var(--transition);
}
.faq-question.active .faq-toggle { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 1.1rem 1.6rem 1.4rem; font-size: .925rem; color: var(--text-muted); border-top: 1px solid var(--grey-light); background: var(--grey-bg); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ─── COST TABLE ─────────────────────────────────────────────── */
.cost-table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.cost-table { width: 100%; border-collapse: collapse; font-size: .925rem; }
.cost-table th { background: var(--blue); color: var(--white); padding: 1rem 1.4rem; text-align: left; font-weight: 600; }
.cost-table td { padding: .9rem 1.4rem; border-bottom: 1px solid var(--border); color: var(--text); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--grey-bg); }
.cost-table .highlight-row td { background: #e8f5e9; font-weight: 700; color: var(--green-dark); }
.cost-table .cost-note { font-size: .8rem; color: var(--text-muted); padding: .8rem 1.4rem; background: var(--grey-bg); font-style: italic; }

/* ─── FORMS (Redesigned) ─────────────────────────────────────── */
.form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.75rem;
  box-shadow: var(--shadow);
}
.form-section-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--blue-light); display: flex; align-items: center; gap: .5rem; }
.form-field, .form-group { margin-bottom: 1.4rem; }
.form-field label, .form-label {
  display: block; font-size: .875rem; font-weight: 600; margin-bottom: .5rem; color: var(--text);
}
.form-field label span, .form-label .required { color: #e53e3e; margin-left: .2rem; }
.form-field input,
.form-field select,
.form-field textarea,
.form-control {
  width: 100%; padding: .85rem 1.1rem; font-size: .95rem;
  font-family: var(--font); color: var(--text); background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-control:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,111,191,.12);
}
.form-field textarea, textarea.form-control { resize: vertical; min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #b0bec5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 1.1rem; display: flex; align-items: flex-start; gap: .4rem; }
.form-note::before { content: '🔒'; flex-shrink: 0; margin-top: .05rem; }
.form-disclaimer { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }
.checklist { display: flex; flex-direction: column; gap: .65rem; }
.checklist li { display: flex; align-items: flex-start; gap: .65rem; font-size: .92rem; color: var(--text-muted); }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: .05rem; font-size: 1rem; }

/* ─── INFO LISTS ─────────────────────────────────────────────── */
.info-list { display: flex; flex-direction: column; gap: .65rem; }
.info-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: var(--text-muted); }
.info-list .check { width: 22px; height: 22px; background: var(--green); border-radius: 50%; color: var(--white); font-size: .7rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #0d4f8c 100%);
  color: var(--white); text-align: center; padding: 5rem 0;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { max-width: 580px; margin: .85rem auto 2.25rem; opacity: .9; font-size: 1.05rem; }
.cta-banner .btn-whatsapp { font-size: 1.05rem; padding: 1.05rem 2.4rem; }
.cta-note { margin-top: 1.1rem; font-size: .8rem; opacity: .7; display: flex; align-items: center; justify-content: center; gap: .35rem; }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 3.5rem; }
.contact-method { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem; text-align: center; transition: all var(--transition); }
.contact-method:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.contact-method .cm-icon { font-size: 2.5rem; margin-bottom: 1.1rem; display: block; }
.contact-method h3 { margin-bottom: .5rem; }
.contact-method a { color: var(--blue); font-weight: 600; }
.contact-method p { font-size: .875rem; color: var(--text-muted); margin-bottom: .5rem; }

/* ─── VISA / PRACTICAL INFO BOXES ───────────────────────────── */
.info-box { background: var(--white); border: 1.5px solid var(--border); border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.75rem; }
.info-box h3 { color: var(--blue); margin-bottom: 1rem; font-size: 1.05rem; }
.info-box ul { display: flex; flex-direction: column; gap: .45rem; }
.info-box li { font-size: .9rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: .55rem; }
.info-box li::before { content: '▸'; color: var(--blue); flex-shrink: 0; font-size: .75rem; margin-top: .2rem; }
.info-callout {
  border-left: 4px solid var(--blue); padding: 1rem 1.3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--blue-light); margin-bottom: 1.1rem;
}
.info-callout.green { border-left-color: var(--green); background: #eafaf1; }
.info-callout.amber { border-left-color: var(--amber); background: #fef9e7; }
.info-callout p { margin: 0; font-size: .92rem; color: var(--text-muted); }
.info-callout p:first-child { font-weight: 700; color: var(--blue); margin-bottom: .35rem; }
.info-callout.green p:first-child { color: var(--green-dark); }
.info-callout.amber p:first-child { color: #b7770d; }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: 1.1rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: var(--white); font-weight: 600; }

/* Dark breadcrumb (on white bg) */
.breadcrumb-dark { color: var(--text-muted); background: var(--grey-bg); padding: .75rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb-dark .container { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; font-size: .82rem; }
.breadcrumb-dark a { color: var(--text-muted); }
.breadcrumb-dark a:hover { color: var(--blue); }
.breadcrumb-dark span:last-child { color: var(--text); font-weight: 600; }

/* ─── BLOG ───────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.post-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card-image { height: 210px; background: var(--blue-light); overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: .75rem; color: var(--text-muted); margin-bottom: .5rem; }
.post-card-body h3 { font-size: 1rem; margin-bottom: .5rem; }
.post-card-body h3 a { color: var(--text); text-decoration: none; }
.post-card-body h3 a:hover { color: var(--blue); }
.post-card-body p { font-size: .875rem; color: var(--text-muted); flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; font-weight: 600; color: var(--blue); margin-top: 1rem; text-decoration: none; }

/* ─── FLOATING WHATSAPP ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; width: 62px; height: 62px; bottom: 32px; right: 32px;
  background-color: var(--whatsapp); color: var(--white); border-radius: 50%;
  box-shadow: 2px 2px 16px rgba(0,0,0,.28); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all var(--transition);
}
.whatsapp-float:hover { background: var(--whatsapp-dark); color: var(--white); transform: scale(1.1); box-shadow: 2px 2px 24px rgba(37,211,102,.45); }
.whatsapp-float-tooltip { position: absolute; right: 74px; background: var(--text); color: var(--white); font-size: .8rem; font-weight: 500; padding: .45rem .9rem; border-radius: 7px; white-space: nowrap; opacity: 0; transition: opacity var(--transition); pointer-events: none; }
.whatsapp-float-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--text); }
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: #111d2c; color: rgba(255,255,255,.72); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.75rem; padding-bottom: 3.25rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 1.1rem; display: block; text-decoration: none; }
.footer-logo span { color: var(--green); }
.footer-tagline { font-size: .875rem; line-height: 1.65; margin-bottom: 1.35rem; }
.footer-wa { display: flex; align-items: center; gap: .5rem; color: var(--whatsapp); font-weight: 600; font-size: .9rem; text-decoration: none; }
.footer-wa:hover { color: #4cdb83; }
.footer-col h4 { color: var(--white); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li a { font-size: .875rem; color: rgba(255,255,255,.58); text-decoration: none; transition: color var(--transition); }
.footer-col li a:hover { color: var(--white); }
.footer-bottom { padding: 1.35rem 0; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { font-size: .8rem; }
.footer-disclaimer { font-size: .75rem; opacity: .5; max-width: 600px; line-height: 1.55; }

/* ─── STAT CALLOUT STRIP ─────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 3rem 0;
}
.stats-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}
.stat-item { color: var(--white); }
.stat-item strong { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: .4rem; }
.stat-item span { font-size: .875rem; opacity: .85; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hospital-partner-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-fullwidth { min-height: 480px; }
  .hero-fw-content h1 { font-size: 2.2rem; }
  .hero-fw-badges { gap: .75rem; }
  .hero-fw-badge { padding: .6rem 1rem; flex: 1 1 auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .steps-grid::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .accommodation-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .journey-infographic { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 1.5rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  .section { padding: 3.5rem 0; }
  .site-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 1.1rem; box-shadow: var(--shadow-lg); gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav > li > a { padding: .8rem 1.1rem; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--grey-bg); border-radius: var(--radius); opacity: 1; visibility: visible; transform: none; display: none; padding: .25rem 0; margin-top: .25rem; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown > a::after { float: right; margin-top: .15rem; }
  .nav-toggle { display: flex; }
  .header-whatsapp { display: none; }
  .site-header { position: relative; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
  .accommodation-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 3.25rem 0 3rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-fullwidth { min-height: 520px; padding-bottom: 1.5rem; }
  .hero-fw-content { padding-top: 4rem; }
  .hero-fw-content h1 { font-size: 1.8rem; }
  .hero-fw-sub { font-size: 1rem; }
  .hero-fw-cta { flex-direction: column; align-items: stretch; }
  .hero-fw-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-fw-badges { flex-direction: column; gap: .6rem; }
  .hero-fw-badge { width: 100%; }
  .btn-whatsapp { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 22px; right: 22px; }
  .cta-banner { padding: 3.5rem 0; }
  .hospital-partner-grid { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ─── PRINT ──────────────────────────────────────────────────── */
@media print {
  .site-header, .whatsapp-float, .site-footer { display: none; }
  a::after { content: ' (' attr(href) ')'; font-size: .75em; }
}
