/* ==========================================================================
   Alpha Hitech Clinic & Diagnostic Centre — Design tokens
   ========================================================================== */
:root {
  --bg:        #F6F7F3;
  --bg-alt:    #FFFFFF;
  --teal:      #2F7A72;   /* Women's Health accent */
  --teal-dark: #1F5A54;
  --navy:      #16303D;   /* Diagnostics / Radiology accent */
  --navy-soft: #21414F;
  --sage:      #8FAF8A;   /* shared / neutral accent */
  --sand:      #EFEBE1;
  --ink:       #16232B;
  --ink-soft:  #4B5A63;
  --line:      #E1E4DD;
  --white:     #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shadow-soft: 0 12px 32px -18px rgba(22,35,43,0.28);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal-dark);
  display: inline-block;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { box-shadow: var(--shadow-soft); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ==========================================================================
   Top info bar
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
  max-width: 260px;
}
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--white), 0 3px 10px rgba(22,48,61,0.25);
  flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav__list { display: flex; align-items: center; gap: 20px; font-size: 0.9rem; font-weight: 500; }
.nav__list > li { position: relative; }
.nav__list > li > a {
  padding: 10px 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
}
.nav__list > li > a:hover, .nav__list > li.active > a { color: var(--teal-dark); }
.nav__list .caret { font-size: 0.6rem; transform: translateY(1px); }

.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.nav__list > li:hover .dropdown,
.nav__list > li:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.dropdown a:hover { background: var(--bg); color: var(--teal-dark); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

/* Mobile nav */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset: 0 0 0 30%; background: var(--white); flex-direction: column; align-items: stretch;
    padding: 90px 26px 26px; gap: 0; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .nav.open { transform: translateX(0); box-shadow: -10px 0 30px rgba(0,0,0,0.15); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li > a { padding: 14px 0; border-bottom: 1px solid var(--line); justify-content: space-between; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none;
    display: none; padding: 0 0 8px 12px; }
  .nav__list > li.mobile-open .dropdown { display: block; }
  .nav-cta { margin-top: 18px; flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   Hero + slider
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  height: 620px;
  display: flex;
  align-items: center;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide .art { position: absolute; inset: 0; }
.hero__slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(22,48,61,0.20) 0%, rgba(22,48,61,0.82) 42%, rgba(47,122,114,0.55) 100%);
}
.hero__content { display: none; position: relative; z-index: 2; max-width: 640px; padding: 90px 0; }
.hero__content.active { display: block; }
.hero__content .eyebrow { color: var(--sage); }
.hero__content .eyebrow::before { background: var(--sage); }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); }
.hero p.lead { color: rgba(255,255,255,0.86); font-size: 1.1rem; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__caption {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-top: 34px;
  border-left: 2px solid var(--sage);
  padding-left: 16px;
}

/* Per-slide text alignment — add --center or --right to a .hero__content block */
.hero__content--center { margin-left: auto; margin-right: auto; text-align: center; }
.hero__content--center p.lead { margin-left: auto; margin-right: auto; }
.hero__content--center .hero__actions { justify-content: center; }
.hero__content--center .hero__caption { margin-left: auto; margin-right: auto; border-left: none; padding-left: 0; }
.hero__content--right { margin-left: auto; text-align: right; }
.hero__content--right p.lead { margin-left: auto; }
.hero__content--right .hero__actions { justify-content: flex-end; }
.hero__content--right .hero__caption { border-left: none; border-right: 2px solid var(--sage); padding-left: 0; padding-right: 16px; }
.hero__dots {
  position: absolute; z-index: 3; bottom: 26px; left: 24px;
  display: flex; gap: 9px;
}
.hero__dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent; cursor: pointer; padding: 0;
}
.hero__dots button.active { background: var(--sage); border-color: var(--sage); }
.hero__arrows { position: absolute; z-index: 3; right: 24px; bottom: 22px; display: flex; gap: 10px; }
.hero__arrows button {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); cursor: pointer; font-size: 1rem;
}
.hero__arrows button:hover { background: rgba(255,255,255,0.24); }

/* Real photo support inside decorative panels — image fills the shape;
   if no file is present at the given path, the gradient behind it still shows. */
.art, .about-grid__art, .doctor-card__photo, .service-card__art {
  position: relative;
  overflow: hidden;
}
.art img, .about-grid__art img, .doctor-card__photo img, .service-card__art img,
.art video, .about-grid__art video, .doctor-card__photo video, .service-card__art video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.brand__mark { position: relative; overflow: hidden; }
.brand__mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* decorative gradient "art" panels used instead of stock photography */
.art-clinic { background: radial-gradient(circle at 70% 30%, #3C8E86 0%, #16303D 65%); }
.art-gynec { background: radial-gradient(circle at 25% 70%, #4E9C86 0%, #16303D 70%); }
.art-lab { background: radial-gradient(circle at 75% 75%, #2C4B58 0%, #101E27 70%); }
.art-team { background: radial-gradient(circle at 40% 40%, #8FAF8A 0%, #1F5A54 60%, #16303D 100%); }

/* ==========================================================================
   About + stats
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-grid__art {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--teal) 0%, var(--navy) 100%);
}
.about-grid__art::after {
  content: "";
  position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: calc(var(--radius-l) - 8px);
}

/* Wider art panel for video content (e.g. logo animation) — avoids the heavy crop a 4/5 portrait box gives a landscape video */
.about-grid--video { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
.about-grid--video .about-grid__art { aspect-ratio: 16/10; }
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
}
.stats .stat { width: 220px; text-align: center; }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 20px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.stats.in-view .stat {
  opacity: 1;
  transform: translateX(0);
}
.stats.in-view .stat:nth-child(1) { transition-delay: 0s; }
.stats.in-view .stat:nth-child(2) { transition-delay: 0.25s; }
.stats.in-view .stat:nth-child(3) { transition-delay: 0.5s; }
.stats.in-view .stat:nth-child(4) { transition-delay: 0.75s; }
@media (prefers-reduced-motion: reduce) {
  .stat {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--teal-dark);
}
.stat span { color: var(--ink-soft); font-size: 0.88rem; }

/* ==========================================================================
   Doctor cards (signature "seam" motif)
   ========================================================================== */
.doctors-seam {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.doctor-card {
  background: var(--white);
  padding: 46px 42px;
  position: relative;
}
.doctor-card--gynec { background: linear-gradient(165deg, #EAF3F1 0%, var(--white) 55%); }
.doctor-card--path  { background: linear-gradient(165deg, #E9EDEF 0%, var(--white) 55%); }
.doctors-seam .doctor-card--gynec,
.doctors-seam .doctor-card--path {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.doctors-seam .doctor-card--gynec { transform: translateX(-70px); }
.doctors-seam .doctor-card--path  { transform: translateX(70px); }
.doctors-seam.in-view .doctor-card--gynec,
.doctors-seam.in-view .doctor-card--path {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .doctors-seam .doctor-card--gynec,
  .doctors-seam .doctor-card--path {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.doctor-card__photo {
  width: 84px; height: 84px; border-radius: 50%;
  margin-bottom: 20px;
}
.doctor-card--gynec .doctor-card__photo { background: linear-gradient(135deg, var(--teal), var(--sage)); }
.doctor-card--path .doctor-card__photo { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.doctor-card .role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.doctor-card h3 { font-size: 1.5rem; margin-bottom: 2px; }
.doctor-card ul { margin: 16px 0 22px; }
.doctor-card ul li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 7px;
}
.doctor-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}
.doctor-card--path ul li::before { background: var(--navy); }
.doctors-seam .seam-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--line);
  z-index: 1;
}

/* ==========================================================================
   Dual specialty split
   ========================================================================== */
.dual-split { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-l); overflow: hidden; }
.dual-panel { padding: 54px 44px; color: var(--white); position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; }
.dual-panel--teal { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%); }
.dual-panel--navy { background: linear-gradient(160deg, var(--navy-soft) 0%, var(--navy) 100%); }
.dual-panel .eyebrow { color: rgba(255,255,255,0.75); }
.dual-panel .eyebrow::before { background: rgba(255,255,255,0.75); }
.dual-panel h3 { color: var(--white); font-size: 1.7rem; }
.dual-panel p { color: rgba(255,255,255,0.85); }

/* ==========================================================================
   Service cards
   ========================================================================== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.service-card__art { height: 150px; }
.service-card__body { padding: 22px 22px 26px; }
.service-card__body .tag {
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--teal-dark);
}
.service-card__body h4 { font-size: 1.12rem; margin: 8px 0 8px; }
.service-card__body p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0; }

.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.service-list__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.service-list__item .dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; background: var(--teal); }
.service-list__item.navy .dot { background: var(--navy); }
.service-list__item h5 { margin: 0 0 4px; font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; color: var(--navy); }
.service-list__item p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 30px 26px; }
.why-card .num { font-family: var(--font-mono); color: var(--sage); font-size: 0.85rem; }
.why-card h4 { margin: 10px 0 8px; font-size: 1.12rem; }
.why-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 30px; left: 8%; right: 8%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step { position: relative; text-align: left; }
.step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); color: var(--teal-dark); font-size: 1.1rem;
  margin-bottom: 18px; position: relative; z-index: 2;
}
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-wrap { position: relative; max-width: 760px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform .5s ease; }
.testi-slide { min-width: 100%; padding: 6px; }
.testi-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 40px; text-align: center;
}
.testi-card .stars { color: var(--sage); letter-spacing: 3px; margin-bottom: 16px; }
.testi-card p.quote { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); font-style: italic; }
.testi-card .who { margin-top: 18px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.testi-nav button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--teal-dark); background: transparent; cursor: pointer; padding: 0; }
.testi-nav button.active { background: var(--teal-dark); }
.testi-note { text-align: center; font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 4px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--navy);
}
.faq-item__q .plus { font-family: var(--font-mono); font-size: 1.2rem; color: var(--teal-dark); transition: transform .2s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p { padding: 0 4px 22px; color: var(--ink-soft); }

/* ==========================================================================
   Contact / CTA band
   ========================================================================== */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h3 { color: var(--white); margin-bottom: 6px; font-size: 1.6rem; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 30px; }
.contact-card h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); color: var(--teal-dark); margin-bottom: 14px; }
.contact-card p { color: var(--ink-soft); margin-bottom: 6px; }
.contact-card .map-frame { border-radius: var(--radius-s); overflow: hidden; margin-top: 16px; border: 1px solid var(--line); }
.contact-card .map-frame iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h5 {
  color: var(--white); font-family: var(--font-mono); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--sage); }
.footer-brand .brand { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.65); margin-top: 14px; font-size: 0.92rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 22px 0; font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { margin-left: 18px; }
.footer-bottom a:hover { color: var(--sage); }

/* Sticky mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.mobile-bar .container { display: flex; padding: 0; max-width: none; }
.mobile-bar a {
  flex: 1; text-align: center; padding: 13px 6px; font-size: 0.8rem; font-weight: 600;
  border-right: 1px solid var(--line); color: var(--navy); display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.mobile-bar a:last-child { border-right: none; }
.mobile-bar a.whatsapp { color: var(--teal-dark); }

.disclaimer-bar { background: var(--sand); font-size: 0.8rem; color: var(--ink-soft); padding: 12px 0; text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__art { max-width: 380px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .stats .stat { width: calc(50% - 10px); }
  .doctors-seam { grid-template-columns: 1fr; }
  .doctors-seam .seam-line { display: none; }
  .dual-split { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 36px 26px; }
  body { padding-bottom: 58px; }
  .mobile-bar { display: block; }
  .hero { height: 620px; }
  .hero__content { padding: 70px 0 60px; }
}
@media (max-width: 520px) {
  .stats .stat { width: calc(50% - 10px); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar__left span:nth-child(3) { display: none; }
  .hero__arrows { display: none; }
}
