/* ============================================================
   MediGlobe — Premium Stylesheet v2
   ============================================================ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #1c0e5c;
  --primary-d:     #230b0b;
  --primary-l:     #a08ed4;
  --accent:        #06b6d4;
  --green:         #10b981;
  --red:           #ef4444;
  --amber:         #f59e0b;
  --dark:          #0f172a;
  --dark2:         #1e293b;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --bg:            #f8fafc;
  --white:         #ffffff;
  --r:             12px;
  --rl:            20px;
  --rxl:           28px;
  --sh-sm:         0 1px 3px rgba(0,0,0,.08);
  --sh:            0 4px 12px rgba(0,0,0,.08);
  --sh-md:         0 10px 24px rgba(0,0,0,.1);
  --sh-lg:         0 20px 40px rgba(0,0,0,.12);
  --sh-xl:         0 32px 64px rgba(0,0,0,.18);
  --t:             all .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button, select { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
img { display: block; max-width: 100%; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bg-subtle { background: var(--bg); }
.bg-dark   { background: var(--dark); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section { padding: 96px 0; }
.sec-header { text-align: center; margin-bottom: 60px; }
.sec-header.light .sec-title { color: var(--white); }
.sec-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); background: rgba(28,14,92,.08);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
}
.sec-tag.light { color: var(--primary-l); background: rgba(129,140,248,.1); }
.sec-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.sec-sub   { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; }
.sec-cta   { text-align: center; margin-top: 48px; }

.btn-primary-nav {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white); padding: 11px 22px; border-radius: 10px;
  font-weight: 600; font-size: 14px; transition: var(--t);
  box-shadow: 0 4px 14px rgba(28,14,92,.35);
}
.btn-primary-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28,14,92,.45); }
.btn-outline {
  display: inline-block; border: 2px solid var(--primary); color: var(--primary);
  padding: 13px 32px; border-radius: 10px; font-weight: 600; transition: var(--t);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,.5);
  transition: var(--t);
}
.navbar.scrolled { background: rgba(255,255,255,.98); box-shadow: var(--sh); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }

.logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: var(--dark); white-space: nowrap; }
.logo span { color: var(--primary); }
.logo-mark {
  width: 32px; height: 32px; background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--white);
}
.logo-mark-white { background: linear-gradient(135deg, var(--primary-l), var(--accent)); }
.logo-white { color: var(--white); }
.logo-white span { color: var(--primary-l); }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links > a, .nav-dropdown > a {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--dark2); transition: var(--t); white-space: nowrap;
}
.nav-links > a:hover, .nav-dropdown > a:hover { background: var(--bg); color: var(--primary); }
.chevron { font-style: normal; font-size: 10px; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--rl);
  box-shadow: var(--sh-xl); padding: 8px; min-width: 180px;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97);
  transition: var(--t); z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 10px; font-size: 14px; color: var(--dark2); transition: var(--t);
}
.dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
.dd-flag { font-size: 18px; }
.dropdown-menu a .dest-flag { width: 22px; height: 15px; margin-bottom: 0; margin-right: 6px; border-radius: 2px; display: inline-block; vertical-align: middle; }

/* ── Mega Cost Menu (3-level: Country → Category → Procedure) ── */
.mega-menu {
  display: flex !important; padding: 0 !important;
  min-width: 620px; overflow: hidden; border-radius: 14px;
}
.mega-left {
  width: 140px; border-right: 1px solid #e8ecf0;
  padding: 6px 0; flex-shrink: 0;
}
.mega-mid {
  width: 190px; border-right: 1px solid #e8ecf0;
  padding: 6px 0; flex-shrink: 0; min-height: 220px;
}
.mega-right { flex: 1; padding: 6px; min-height: 220px; }
.mega-country {
  display: flex; align-items: center;
  padding: 9px 12px; font-size: 13px; font-weight: 500; color: #374151;
  cursor: pointer; gap: 7px; transition: background .15s; text-decoration: none;
}
.mega-country:hover, .mega-country.mc-active {
  background: #f1f5f9; color: #1c0e5c;
}
.mega-country img { width: 20px; height: 13px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.mega-country .mc-chevron { font-size: 10px; opacity: .4; margin-left: auto; }
.mega-cat {
  display: flex; align-items: center;
  padding: 8px 12px; font-size: 12px; font-weight: 600; color: #374151;
  cursor: pointer; gap: 7px; transition: background .15s; border-radius: 0;
}
.mega-cat:hover, .mega-cat.mc-active {
  background: #f1f5f9; color: #1c0e5c;
}
.mega-cat .mc-cat-icon { font-size: 15px; flex-shrink: 0; }
.mega-cat .mc-chevron  { font-size: 10px; opacity: .4; margin-left: auto; }
.mega-proc {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px; font-size: 12px; font-weight: 500; color: #374151;
  text-decoration: none; border-radius: 7px; transition: background .15s; gap: 8px;
}
.mega-proc:hover { background: #f1f5f9; color: #1c0e5c; }
.mega-proc-hint { padding: 16px 12px; color: #94a3b8; font-size: 12px; font-style: italic; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-admin {
  font-size: 13px; font-weight: 600; color: var(--muted); padding: 8px 14px;
  border-radius: 8px; transition: var(--t); border: 1px solid var(--border);
}
.btn-admin:hover { background: var(--bg); color: var(--primary); border-color: var(--primary-l); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }

.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px; z-index: 999; box-shadow: var(--sh-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }

/* ── Ticker ──────────────────────────────────────────────── */
.ticker-wrap {
  margin-top: 68px; background: linear-gradient(135deg, var(--primary), var(--primary-d));
  overflow: hidden; white-space: nowrap; padding: 10px 0;
}
.ticker-track {
  display: inline-flex; gap: 0; animation: ticker 40s linear infinite;
}
.ticker-track span {
  display: inline-block; padding: 0 36px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .02em;
}
.ticker-track span:nth-child(odd) { color: #c4b5fd; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100vh - 68px);
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #fdf4ff 50%, #f0fdf4 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(28,14,92,.08) 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-blob-1 { width: 700px; height: 700px; background: radial-gradient(#6b3a6b, transparent); top: -200px; right: -200px; opacity: .3; animation: hblob 8s ease-in-out infinite; }
.hero-blob-2 { width: 400px; height: 400px; background: radial-gradient(#67e8f9, transparent); bottom: -100px; left: -100px; opacity: .3; animation: hblob 11s ease-in-out infinite reverse; }
.hero-blob-3 { width: 300px; height: 300px; background: radial-gradient(#a7f3d0, transparent); top: 40%; left: 38%; opacity: .25; animation: hblob 14s ease-in-out infinite; }
@keyframes hblob { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,25px)} }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: 60px; padding-bottom: 60px;
}

/* Hero Left */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--dark2);
  margin-bottom: 24px; box-shadow: var(--sh);
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; box-shadow: 0 0 0 3px rgba(16,185,129,.2);
  animation: pdot 2s infinite;
}
@keyframes pdot { 0%,100%{box-shadow:0 0 0 3px rgba(16,185,129,.2)} 50%{box-shadow:0 0 0 7px rgba(16,185,129,.08)} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.highlight-word {
  position: relative; display: inline-block; color: var(--dark);
}
.highlight-word::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px; opacity: .4;
}

.hero-subtitle { font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.75; margin-bottom: 32px; }
.hero-subtitle strong { color: var(--primary); font-weight: 700; }

/* Search */
.search-bar {
  display: flex; align-items: center;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; box-shadow: var(--sh-xl); overflow: hidden;
  margin-bottom: 18px; max-width: 600px;
}
.sf { display: flex; align-items: center; gap: 10px; flex: 1; padding: 0 18px; height: 58px; }
.sf svg { color: var(--muted); flex-shrink: 0; }
.sf input, .sf select { width: 100%; font-size: 15px; color: var(--dark); }
.sf input::placeholder { color: var(--muted); }
.sf--sm { flex: 0 0 auto; border-left: 1px solid var(--border); }
.sf-divider { display: none; }
.btn-search {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white); padding: 0 28px; height: 58px;
  font-weight: 700; font-size: 15px; transition: var(--t);
  flex-shrink: 0; border-radius: 0 14px 14px 0;
  letter-spacing: .02em;
}
.btn-search:hover { filter: brightness(1.1); }

.hero-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-tags span { font-size: 12px; font-weight: 600; color: var(--muted); }
.hero-tags a {
  font-size: 12px; background: rgba(255,255,255,.95); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 999px; color: var(--dark2); transition: var(--t);
}
.hero-tags a:hover { border-color: var(--primary); color: var(--primary); }

/* Booking Widget */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.booking-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 28px;
  box-shadow: var(--sh-xl); width: 100%; max-width: 360px;
  animation: floatWidget 5s ease-in-out infinite;
}
@keyframes floatWidget { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
#widgetInner { transition: opacity .35s ease, transform .35s ease; }
#widgetInner.fading { opacity: 0; transform: translateY(10px); }
.w-dot { width:7px; height:7px; border-radius:50%; background:#e2e8f0; cursor:pointer; transition:background .2s, transform .2s; }
.w-dot.active { background:var(--primary); transform:scale(1.3); }
.widget-header { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.widget-avatar { position: relative; }
.avatar-inner { width: 64px; height: 64px; background: linear-gradient(135deg,var(--primary),var(--accent)); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.avail-badge { position: absolute; bottom: -4px; right: -4px; background: var(--green); color: var(--white); font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 999px; border: 2px solid var(--white); }
.widget-doc-info strong { display: block; font-size: 15px; font-weight: 700; }
.widget-doc-info span { font-size: 12px; color: var(--muted); display: block; margin-bottom: 4px; }
.widget-stars { font-size: 12px; color: var(--amber); }
.widget-stars em { font-style: normal; font-weight: 600; color: var(--dark2); }
.widget-divider { height: 1px; background: var(--border); margin: 16px 0; }
.widget-stats { display: flex; justify-content: space-between; }
.w-stat { text-align: center; }
.ws-num { display: block; font-size: 16px; font-weight: 800; color: var(--primary); }
.ws-label { font-size: 11px; color: var(--muted); }
.widget-slots { margin-bottom: 16px; }
.slot-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.slot-row { display: flex; gap: 6px; flex-wrap: wrap; }
.slot {
  font-size: 11px; font-weight: 600; padding: 5px 10px;
  border: 1.5px solid var(--border); border-radius: 8px; color: var(--muted); cursor: pointer; transition: var(--t);
}
.slot.active { border-color: var(--primary); color: var(--primary); background: rgba(28,14,92,.05); }
.slot:hover { border-color: var(--primary); color: var(--primary); }
.btn-book {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white); padding: 14px;
  border-radius: 12px; font-weight: 700; font-size: 15px;
  transition: var(--t); box-shadow: 0 4px 14px rgba(28,14,92,.35);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,14,92,.4); }
.widget-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }

/* Floating pills */
.hero-pill {
  position: absolute; background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 16px;
  font-size: 12px; font-weight: 700; color: var(--dark2);
  box-shadow: var(--sh-md); white-space: nowrap;
}
.pill-1 { top: 10px; right: -10px; animation: fp 5s ease-in-out infinite; }
.pill-2 { bottom: 80px; right: -20px; animation: fp 5s ease-in-out infinite .8s; }
.pill-3 { bottom: 20px; left: -20px; animation: fp 5s ease-in-out infinite 1.6s; }
@keyframes fp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar { background: var(--dark); padding: 36px 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 8px 44px; }
.stat-num { font-size: 30px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; white-space: nowrap; }
.stat-div { width: 1px; height: 48px; background: rgba(255,255,255,.1); }

/* ── How It Works ────────────────────────────────────────── */
.how-works {}
.steps-flow { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.step-item { flex: 1; min-width: 200px; padding: 36px 24px; text-align: center; position: relative; display: flex; flex-direction: column; }
.step-circle {
  width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--white); font-size: 14px; font-weight: 800;
  box-shadow: 0 8px 20px rgba(28,14,92,.3);
}
.step-body { flex: 1; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rxl); padding: 28px 20px; transition: var(--t); }
.step-body:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(28,14,92,.15); }
.step-ico { font-size: 36px; margin-bottom: 12px; }
.step-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.step-arrow { font-size: 24px; color: var(--border); align-self: center; padding: 0 8px; margin-top: -20px; flex-shrink: 0; }

/* ── Treatments ──────────────────────────────────────────── */
.treat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.treat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 28px; transition: var(--t);
  position: relative; overflow: hidden; cursor: pointer;
}
.treat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--c, var(--primary)); transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.treat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.treat-card:hover::before { transform: scaleX(1); }
.treat-emoji { font-size: 38px; margin-bottom: 14px; display: block; }
.treat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.treat-card p { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.treat-from { font-size: 13px; font-weight: 700; color: var(--green); display: block; margin-bottom: 12px; }
.treat-cta { font-size: 13px; font-weight: 600; color: var(--primary); transition: var(--t); cursor: pointer; }
.treat-cta:hover { letter-spacing: .02em; }
.btn-view-all-treats {
  display: inline-block; padding: 13px 36px; border-radius: 50px;
  background: linear-gradient(135deg, #1c0e5c, #4338ca); color: #fff;
  font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(67,56,202,.3); transition: transform .2s, box-shadow .2s;
}
.btn-view-all-treats:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(67,56,202,.45); }

/* ── Destinations ────────────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 16px; }
.dest-card { border-radius: 24px; overflow: hidden; cursor: pointer; transition: var(--t); position: relative; min-height: 200px; }
.dest-card:first-child { grid-column: 1 / 3; min-height: 280px; }
.dest-inner { position: absolute; inset: 0; background: linear-gradient(135deg, var(--g1, #230b0b), var(--g2, #0e0b3c)); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.dest-inner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%); }
.dest-inner > * { position: relative; z-index: 1; }
.dest-flag { display: block; width: 40px; height: 28px; object-fit: cover; border-radius: 4px; margin-bottom: 10px; box-shadow: 0 2px 6px rgba(0,0,0,.25); }
.dest-inner h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.dest-inner p { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 10px; }
.dest-badges { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.dest-badges span { font-size: 11px; background: rgba(255,255,255,.18); color: var(--white); padding: 3px 10px; border-radius: 999px; font-weight: 600; }
.dest-btn { display: inline-block; font-size: 13px; font-weight: 700; color: var(--white); background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: 8px 18px; border-radius: 8px; transition: var(--t); }
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--sh-xl); }
.dest-card:hover .dest-btn { background: rgba(255,255,255,.28); }

/* ── Doctors ─────────────────────────────────────────────── */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.doc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rxl); padding: 28px; text-align: center;
  transition: var(--t); position: relative;
}
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: rgba(28,14,92,.15); }
.doc-avatar {
  width: 80px; height: 80px; border-radius: 22px; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; box-shadow: var(--sh-md);
}
.doc-photo {
  width: 80px; height: 80px; border-radius: 22px; margin: 0 auto 10px;
  display: block; object-fit: cover; box-shadow: var(--sh-md);
  border: 3px solid rgba(255,255,255,.3);
}
.doc-avail {
  font-size: 11px; font-weight: 700; margin-bottom: 10px;
}
.doc-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.doc-spec { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.doc-hosp { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.doc-meta { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.doc-meta span { font-size: 11px; font-weight: 600; background: var(--bg); padding: 4px 10px; border-radius: 999px; color: var(--dark2); }
.doc-btn {
  display: block; background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white); padding: 11px; border-radius: 12px;
  font-weight: 700; font-size: 13px; transition: var(--t);
  box-shadow: 0 4px 12px rgba(28,14,92,.3);
  border: none; width: 100%; cursor: pointer;
  text-align: center; font-family: inherit; text-decoration: none;
}
.doc-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(28,14,92,.4); }
.doc-btns { display: flex; gap: 8px; flex-direction: column; }
.doc-btn-details {
  background: transparent; color: var(--primary);
  border: 2px solid rgba(28,14,92,.35); box-shadow: none;
}
.doc-btn-details:hover { background: rgba(28,14,92,.07); border-color: var(--primary); box-shadow: none; transform: translateY(-2px); }

/* ── Hospitals ───────────────────────────────────────────── */
.hosp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.hosp-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rxl); padding: 28px; transition: var(--t); position: relative;
}
.hosp-card:hover { transform: translateY(-5px); box-shadow: var(--sh-xl); border-color: rgba(28,14,92,.12); }
.hosp-acc { position: absolute; top: 18px; right: 18px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--green); background: rgba(16,185,129,.1); padding: 4px 10px; border-radius: 999px; }
.hosp-logo-wrap { margin-bottom: 16px; }
.hosp-logo { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: var(--white); }
.hosp-photo { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; }
.hosp-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.hosp-loc { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.hosp-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.hosp-tags span { font-size: 11px; font-weight: 600; background: rgba(28,14,92,.07); color: var(--primary); padding: 3px 10px; border-radius: 999px; }
.hosp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.stars { color: var(--amber); font-size: 13px; }
.hosp-rating span:last-child { font-size: 12px; color: var(--muted); }
.hosp-cta { font-size: 13px; font-weight: 600; color: var(--primary); transition: var(--t); }
.hosp-cta:hover { letter-spacing: .02em; }

/* ── Cost Table ──────────────────────────────────────────── */
.cost-table-wrap { overflow-x: auto; border-radius: var(--rxl); box-shadow: var(--sh-lg); border: 1.5px solid var(--border); }
.cost-table { width: 100%; border-collapse: collapse; background: var(--white); }
.cost-table thead { background: var(--dark2); }
.cost-table th { padding: 16px 24px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); white-space: nowrap; }
.cost-table th.hl { color: #a08ed4; }
.cost-table th.ex { color: rgba(252,165,165,.8); }
.cost-th-inner { display: flex; align-items: center; gap: 9px; }
.cost-flag { width: 28px; height: 19px; border-radius: 5px; object-fit: cover; box-shadow: 0 1px 6px rgba(0,0,0,.4); }
.cost-table tbody tr { border-bottom: 1px solid var(--border); transition: var(--t); }
.cost-table tbody tr:last-child { border: none; }
.cost-table tbody tr:hover { background: var(--bg); }
.cost-table td { padding: 16px 24px; font-size: 15px; }
.proc-cell { display: flex; align-items: center; gap: 11px; }
.proc-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; background: rgba(28,14,92,.07); }
.cost-table td.hl { background: rgba(28,14,92,.03); }
.ptag { font-weight: 600; }
.ptag.red { color: var(--red); }
.cost-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ── Why Us ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--rl); padding: 32px; transition: var(--t); }
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.why-ico { font-size: 38px; margin-bottom: 16px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── Testimonials ────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 56px; }
.testi-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rxl); padding: 32px; transition: var(--t); }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.testi-featured { background: linear-gradient(135deg, var(--primary), #0e0b3c); border-color: transparent; color: var(--white); }
.tq { font-size: 64px; line-height: .8; font-family: Georgia, serif; color: var(--primary-l); margin-bottom: 10px; }
.testi-featured .tq { color: rgba(255,255,255,.25); }
.testi-card > p { font-size: 15px; line-height: 1.78; color: var(--dark2); margin-bottom: 20px; }
.testi-featured > p { color: rgba(255,255,255,.88); }
.ta { display: flex; align-items: center; gap: 12px; }
.ta-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testi-featured .ta-av { background: rgba(255,255,255,.2) !important; }
.ta strong { display: block; font-size: 13px; font-weight: 700; }
.testi-featured .ta strong { color: var(--white); }
.ta span { font-size: 11px; color: var(--muted); }
.testi-featured .ta span { color: rgba(255,255,255,.6); }
.ta-stars { margin-left: auto; color: var(--amber); font-size: 14px; }
.testi-featured .ta-stars { color: #fde68a; }

.media-strip { text-align: center; }
.media-strip > p { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 20px; }
.media-logos { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; align-items: center; }
.media-logos span { font-size: 15px; font-weight: 900; color: rgba(0,0,0,.18); letter-spacing: -.01em; transition: var(--t); cursor: default; }
.media-logos span:hover { color: var(--primary); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 20px 24px; font-size: 15px; font-weight: 600;
  color: var(--dark); text-align: left; transition: var(--t);
}
.faq-q:hover { color: var(--primary); background: var(--bg); }
.faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; transition: var(--t); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-sec { padding: 60px 0 96px; }
.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border-radius: 32px; padding: 72px 60px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cta-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(28,14,92,.35), transparent 70%); top: 50%; left: 30%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-left { position: relative; z-index: 1; }
.cta-left h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--white); margin: 14px 0; }
.cta-left p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 24px; }
.cta-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cta-perks li { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); }
.cta-perks li::first-letter { color: var(--green); }

.cta-right { position: relative; z-index: 1; }
.cta-form-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 32px; backdrop-filter: blur(12px); }
.cta-form-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-form input, .cta-form select, .cta-form textarea {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 13px 16px; font-size: 14px; color: var(--white);
  font-family: inherit; transition: var(--t); resize: none;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,.35); }
.cta-form select option { color: var(--dark); background: var(--white); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-color: rgba(129,140,248,.5); outline: none; background: rgba(255,255,255,.1); }
.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white); padding: 15px; border-radius: 12px;
  font-weight: 700; font-size: 16px; transition: var(--t);
  box-shadow: 0 4px 16px rgba(28,14,92,.4);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,14,92,.5); }
.form-note { text-align: center; font-size: 12px; color: rgba(255,255,255,.35); margin-top: 8px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 16px; line-height: 1.75; max-width: 260px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.soc { width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.45); transition: var(--t); }
.soc:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.5); padding: 4px 0; transition: var(--t); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.2); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--t); z-index: 999;
}
.wa-fab svg { width: 28px; height: 28px; color: var(--white); }
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 100px; right: 28px;
  background: var(--dark2); color: var(--white);
  padding: 14px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--sh-xl); z-index: 9999;
  transform: translateY(20px); opacity: 0;
  transition: all .3s ease; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: 1 / -1; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 48px 36px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn-primary-nav, .nav-actions .btn-admin { display: none; }
  .hamburger { display: flex; }
  .steps-flow { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step-item { min-width: unset; width: 100%; max-width: 340px; }
  .testi-grid { grid-template-columns: 1fr; }
  .stat-div { display: none; }
  .stat-item { padding: 8px 20px; }
  .cta-box { padding: 36px 24px; }
  .search-bar { flex-direction: column; }
  .sf { width: 100%; border-bottom: 1px solid var(--border); }
  .sf--sm { border-left: none; border-bottom: 1px solid var(--border); }
  .btn-search { width: 100%; border-radius: 0 0 14px 14px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: 1; }
  .treat-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ── Consultation Booking Modal ──────────────────────────── */
.consult-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.consult-modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: slideUp .25s ease;
}
.consult-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0;
}
.consult-header h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin: 0; }
.consult-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: #f1f5f9; border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  color: #64748b; flex-shrink: 0; transition: background .15s;
}
.consult-close:hover { background: #e2e8f0; color: #0f172a; }
.consult-doc-pill {
  margin: 14px 28px 0;
  background: linear-gradient(135deg, rgba(28,14,92,.06), rgba(14,11,60,.04));
  border: 1.5px solid rgba(28,14,92,.14);
  border-radius: 12px; padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
}
.consult-doc-pill .cdp-icon { font-size: 24px; }
.consult-doc-pill .cdp-name { font-size: 14px; font-weight: 700; color: #0f172a; }
.consult-doc-pill .cdp-spec { font-size: 12px; color: #64748b; margin-top: 1px; }
.consult-body { padding: 20px 28px 28px; }
.consult-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.consult-field { display: flex; flex-direction: column; gap: 5px; }
.consult-field label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #64748b;
}
.consult-field input,
.consult-field textarea,
.consult-field select {
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  padding: 10px 14px; font-size: 14px; color: #0f172a;
  outline: none; font-family: inherit; background: #fff;
  transition: border-color .2s;
}
.consult-field input:focus,
.consult-field textarea:focus { border-color: #1c0e5c; }
.consult-field textarea { resize: vertical; }
/* Phone field with dial-code picker */
.phone-input-group {
  display: flex; border: 1.5px solid #e2e8f0; border-radius: 10px;
  overflow: hidden; transition: border-color .2s; background: #fff;
}
.phone-input-group:focus-within { border-color: #1c0e5c; }
.phone-code-select {
  border: none; border-right: 1.5px solid #e2e8f0;
  border-radius: 0; padding: 10px 8px; background: #f8fafc;
  font-size: 13px; color: #0f172a; cursor: pointer; outline: none;
  font-family: inherit; min-width: 92px; flex-shrink: 0;
}
.phone-number-input {
  border: none; flex: 1; padding: 10px 14px; font-size: 14px;
  color: #0f172a; outline: none; font-family: inherit;
  background: transparent; min-width: 0;
}
/* CTA dark-theme phone-group overrides */
.cta-form .phone-input-group {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
}
.cta-form .phone-input-group:focus-within {
  border-color: rgba(129,140,248,.5); background: rgba(255,255,255,.1);
}
.cta-form .phone-code-select {
  background: rgba(255,255,255,.05); border-right: 1px solid rgba(255,255,255,.1); color: #fff;
}
.cta-form .phone-code-select option { color: #0f172a; background: #fff; }
.cta-form .phone-number-input { color: #fff; }
.cta-form .phone-number-input::placeholder { color: rgba(255,255,255,.35); }
.consult-submit {
  width: 100%; margin-top: 18px;
  background: linear-gradient(135deg, #1c0e5c, #0e0b3c);
  color: #fff; border: none; border-radius: 12px;
  padding: 14px 0; font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: .01em;
  transition: opacity .2s, transform .15s;
}
.consult-submit:hover { opacity: .9; transform: translateY(-1px); }
.consult-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }
@media (max-width: 520px) {
  .consult-grid { grid-template-columns: 1fr; }
  .consult-modal { border-radius: 16px; }
  .consult-header { padding: 20px 20px 0; }
  .consult-body { padding: 16px 20px 24px; }
  .consult-doc-pill { margin-left: 20px; margin-right: 20px; }
}

/* ── Skeleton loading cards ──────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton-card {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--rxl);
  min-height: 200px;
  pointer-events: none;
}
