/* ============================================================
   Dr. Srikanth Munna — Premium Medical Website
   Core Styles
   ============================================================ */

:root {
  /* Brand */
  --navy: #0b1f3a;
  --navy-deep: #061528;
  --navy-soft: #132f52;
  --medical-blue: #1a5f9e;
  --medical-blue-light: #2a7bc4;
  --teal: #0d9488;
  --teal-soft: #14b8a6;
  --teal-muted: #ccfbf1;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7fafc;
  --bg-soft: #eef4f9;
  --bg-muted: #e8eef5;
  --border: #d8e2ec;
  --border-light: #e8eef4;
  --text: #1a2b3c;
  --text-secondary: #4a5d72;
  --text-muted: #6b7c8f;
  --text-light: #8a9bb0;

  /* Accents */
  --gold: #c9a227;
  --success: #059669;
  --danger: #dc2626;
  --whatsapp: #25d366;
  --star: #f5a623;

  /* Surfaces */
  --shadow-xs: 0 1px 2px rgba(11, 31, 58, 0.04);
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 16px 48px rgba(11, 31, 58, 0.12);
  --shadow-xl: 0 24px 64px rgba(11, 31, 58, 0.16);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-accent: "Montserrat", sans-serif;

  /* Layout */
  --container: 1180px;
  --header-h: 72px;
  --mobile-cta-h: 64px;
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}
button { cursor: pointer; }
address { font-style: normal; }
:focus-visible {
  outline: 2px solid var(--medical-blue);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utilities */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.section { padding-block: var(--section-pad); }
.section--soft { background: var(--bg-soft); }
.section--navy {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  color: var(--white);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--medical-blue);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--teal-soft); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section--navy .section-title { color: var(--white); }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.section--navy .section-lead { color: rgba(255,255,255,0.78); }
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head .section-lead {
  margin-inline: auto;
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition),
    box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--medical-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 95, 158, 0.28);
}
.btn--primary:hover {
  background: var(--navy);
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.3);
}
.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--medical-blue);
  color: var(--medical-blue);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.28);
}
.btn--teal:hover { background: #0f766e; }
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.22);
}
.btn--navy:hover {
  background: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.3);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--ghost {
  background: transparent;
  color: var(--medical-blue);
  padding-inline: 0.5rem;
}
.btn--ghost:hover { color: var(--navy); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ========== TOP BAR ========== */
.topbar {
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}
.topbar a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--medical-blue, #0a6e6e); }
.topbar__contact,
.topbar__locations {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.topbar__contact a,
.topbar__locations span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.topbar i {
  font-size: 0.9em;
  color: #6b7280;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}
.site-header--bar {
  background: linear-gradient(90deg, #064e4a 0%, #0a3d45 42%, #062a38 100%);
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.site-header--bar.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.site-header--bar .header__inner {
  min-height: 72px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo--bar {
  gap: 0;
  max-width: min(360px, 70vw);
}
.logo__img--bar {
  height: 58px;
  max-width: min(340px, 70vw);
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.site-header--bar .nav__link,
.site-header--bar .header__phone {
  color: rgba(255, 255, 255, 0.92);
}
.site-header--bar .header__phone:hover {
  color: var(--white);
}
.site-header--bar .btn--primary {
  background: var(--teal);
  box-shadow: none;
}
.site-header--bar .btn--primary:hover {
  background: var(--teal-soft);
}
.site-header--bar .nav {
  gap: 0.15rem 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-header--bar .nav__link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.7rem;
}
.site-header--bar .nav__link:hover,
.site-header--bar .nav__link.is-active {
  color: var(--white);
}
.site-header--bar .nav__link.is-active::after {
  background: var(--teal-soft);
}
.site-header--bar .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.site-header--bar .menu-toggle span,
.site-header--bar .menu-toggle span::before,
.site-header--bar .menu-toggle span::after {
  background: var(--white);
}
.logo__img {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(220px, 52vw);
  object-fit: contain;
}
.logo__img--footer {
  height: 56px;
  max-width: 240px;
  margin-bottom: 0.35rem;
}
.logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--medical-blue) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
}
.logo__text strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo__text span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.1rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  position: relative;
}
.nav__link:hover,
.nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.2rem;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}
.nav__dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--medical-blue);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.header__phone:hover { color: var(--medical-blue); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--navy);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ========== HERO ========== */
/* ========== HERO BANNER SLIDER ========== */
.hero {
  position: relative;
  padding: 0;
  background: #f7f9fb;
  overflow: hidden;
}
.hero--banner {
  background:
    url("../images/hero-pattern.webp") center / cover no-repeat,
    #f7f9fb;
}
.hero-slider {
  position: relative;
}
.hero-slider__track {
  position: relative;
}
.hero-slide {
  display: none;
  opacity: 0;
}
.hero-slide.is-active {
  display: block;
  opacity: 1;
  animation: heroFade 0.55s ease;
}
@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Full-bleed image slide */
.hero-banner--image {
  position: relative;
  width: 100%;
  background: #f7f9fb;
}
.hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(78vh, 710px);
  object-fit: contain;
  object-position: center center;
  background: #f7f9fb;
}
.hero-banner__cta-wrap {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  right: auto;
  top: auto;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-slide[data-slide="0"] .hero-banner__cta-wrap {
  left: auto;
  right: clamp(1.25rem, 8vw, 7rem);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

/* Composed slide (slide 2) */
.hero-banner--compose {
  min-height: min(72vh, 620px);
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3.5rem, 5vw, 4rem);
  background:
    url("../images/hero-pattern.webp") center / cover no-repeat,
    #f7f9fb;
}
.hero-banner__compose-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(100% - 2.5rem, 1180px);
}
.hero-banner__photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-banner__photo {
  width: min(100%, 420px);
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 40px rgba(11, 31, 58, 0.18));
}
.hero-banner__copy--compose {
  text-align: left;
  padding-bottom: 1rem;
}
.hero-banner__script {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: #0d7377;
  margin-bottom: 0.85rem;
  font-weight: 400;
}
.hero-banner__name {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.hero-banner__specialties {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #4a4a4a;
  margin-bottom: 1.75rem;
  max-width: 420px;
  line-height: 1.5;
}
.btn--banner {
  background: #0d7377;
  color: #fff;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.28);
  white-space: nowrap;
}
.btn--banner:hover {
  background: #095c5f;
  color: #fff;
}

/* Slider controls */
.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.55rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.hero-slider__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.hero-slider__btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-slider__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--text-secondary);
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.hero-slider__dot.is-active {
  background: #0d7377;
  border-color: #0d7377;
  color: var(--white);
  transform: scale(1.05);
}
.hero-slider__dot:hover:not(.is-active) {
  border-color: #0d7377;
  color: #0d7377;
}

/* Keep legacy hero utility classes for other pages if referenced */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.hero h1,
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
}
.hero__lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__cred {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}
.hero__cred i { color: var(--teal); font-size: 0.9rem; }
.hero__note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 480px;
}
.hero__blob {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: linear-gradient(145deg, rgba(26, 95, 158, 0.15), rgba(13, 148, 136, 0.12));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(160deg, var(--navy-soft), var(--medical-blue));
  aspect-ratio: 3 / 4;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
  background: linear-gradient(145deg, #1a3a5c 0%, #1a5f9e 60%, #0d9488 100%);
}
.float-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.float-card--exp { top: 12%; left: 0; }
.float-card--proc { bottom: 18%; right: 0; }
.float-card__num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--medical-blue);
  line-height: 1;
}
.float-card__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}
.trust-badge {
  position: absolute;
  bottom: 4%;
  left: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.trust-badge i { color: var(--teal-soft); }
.float-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  animation: floatIn 0.8s ease both;
}
.float-card--exp {
  top: 12%;
  left: 0;
  animation-delay: 0.3s;
}
.float-card--proc {
  bottom: 18%;
  right: 0;
  animation-delay: 0.5s;
}
.float-card__num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--medical-blue);
  line-height: 1;
}
.float-card__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}
.trust-badge {
  position: absolute;
  bottom: 4%;
  left: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: floatIn 0.8s ease 0.7s both;
}
.trust-badge i { color: var(--teal-soft); }
@keyframes floatIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SERVICES CATALOG ========== */
.svc-catalog {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
}
.svc-catalog__group {
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.svc-catalog__group:last-child { margin-bottom: 0; }
.svc-catalog__heading {
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 1.35rem;
  letter-spacing: -0.01em;
}
.svc-catalog__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem 1rem;
  margin-bottom: 1rem;
}
.svc-catalog__grid:last-child { margin-bottom: 0; }
.svc-tile {
  width: min(100%, 200px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #d9e3ea;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(11, 31, 58, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.svc-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.12);
  border-color: rgba(13, 148, 136, 0.35);
}
.svc-tile__title {
  display: block;
  padding: 0.7rem 0.65rem 0.45rem;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f766e;
  min-height: 2.7em;
}
.svc-tile__media {
  display: block;
  flex: 1;
  min-height: 130px;
  background: #f4f8fb;
  overflow: hidden;
}
.svc-tile__media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
}
.svc-tile__bar {
  display: block;
  height: 14px;
  background: #0d9488;
  flex-shrink: 0;
}

/* ========== MEET THE DOCTOR ========== */
.meet-doctor {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.meet-doctor__panel {
  background: #f3f9fb;
  border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgba(13, 148, 136, 0.08);
}
.meet-doctor__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.15fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}
.meet-doctor__intro {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.meet-doctor__badge {
  width: 44px;
  height: 44px;
  line-height: 0;
}
.meet-doctor__stat {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  color: var(--navy);
  line-height: 1.25;
  max-width: 11ch;
}
.meet-doctor__stat span {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.meet-doctor__location {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 28ch;
}
.meet-doctor__location i {
  color: var(--teal-soft);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.meet-doctor__title {
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
}
.meet-doctor__media {
  border-radius: clamp(1.1rem, 2vw, 1.5rem);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #0b1f3a, #1a5f9e);
  box-shadow: var(--shadow-md);
}
.meet-doctor__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.meet-doctor__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.meet-doctor__body p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}
.meet-doctor__list {
  display: grid;
  gap: 0.7rem;
  margin: 0.35rem 0 0.5rem;
}
.meet-doctor__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
.meet-doctor__list i {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.meet-doctor__cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  border-radius: 10px;
  padding: 0.95rem 1.55rem;
}

/* ========== YOUTUBE SLIDER ========== */
.yt-videos {
  background: var(--off-white);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.yt-videos__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  color: #c4302b;
  font-weight: 600;
  font-size: 0.92rem;
}
.yt-videos__channel:hover { color: #9f1f1a; }
.yt-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.yt-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 0.15rem 0.85rem;
}
.yt-slider__viewport::-webkit-scrollbar { display: none; }
.yt-slider__track {
  display: flex;
  gap: 1.15rem;
  width: max-content;
}
.yt-slider .video-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  width: min(300px, 78vw);
}
.yt-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.yt-slider__btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.yt-slider__btn:active { transform: scale(0.96); }

/* ========== HIGHLIGHTS + MOSAIC ========== */
.highlights {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  background: var(--white);
}
.highlights__top {
  background:
    radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(42, 123, 196, 0.14), transparent 42%),
    linear-gradient(160deg, #061528 0%, #0b1f3a 55%, #0a3348 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
}
.highlights__title {
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}
.highlights__feature {
  display: grid;
  gap: 1.75rem;
}
.highlights__media {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: #0a2438;
  cursor: pointer;
  border: none;
  padding: 0;
}
.highlights__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlights__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 21, 40, 0.28);
}
.highlights__play i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  padding-left: 4px;
  box-shadow: var(--shadow-lg);
}
.highlights__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.highlights__service {
  text-align: center;
  padding: 0.35rem 0.5rem;
}
.highlights__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  color: #7dd3fc;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
}
.highlights__service h3 {
  font-family: var(--font-accent);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--white);
}
.highlights__service p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.mosaic__card {
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  position: relative;
}
.mosaic__card--media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.mosaic__card--pink {
  background: #f8e8ee;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.mosaic__card--pink img {
  width: 78%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.mosaic__card--stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.55rem 1.4rem 1.35rem;
}
.mosaic__card--gray { background: #eef1f4; }
.mosaic__card--gold { background: #f0c44c; }
.mosaic__card--blue { background: #dceef8; }
.mosaic__card--navy {
  background: #0b1f3a;
  color: var(--white);
}
.mosaic__num {
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: #1a5f9e;
  margin-bottom: 0.55rem;
}
.mosaic__card--gold .mosaic__num { color: #0b1f3a; }
.mosaic__num--gold { color: #f0c44c; }
.mosaic__card--stat h3 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 0.55rem;
}
.mosaic__card--navy h3 { color: var(--white); }
.mosaic__card--stat p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4a5d72;
  margin-bottom: auto;
  padding-bottom: 1.1rem;
}
.mosaic__card--navy p { color: rgba(255, 255, 255, 0.78); }
.mosaic__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.86rem;
  font-weight: 650;
  color: #1a5f9e;
}
.mosaic__card--gold .mosaic__link { color: #0b1f3a; }
.mosaic__link--light { color: #7dd3fc; }
.mosaic__link:hover { gap: 0.6rem; }

/* ========== STATS BANNER ========== */
.stats-banner {
  margin: 0;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background: linear-gradient(180deg, #0d3558 0%, #0a4a55 48%, #006d5b 100%);
  color: var(--white);
}
.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
  align-items: start;
}
.stats-banner__item {
  text-align: center;
  padding: 0.35rem 0.75rem;
}
.stats-banner__num {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  color: var(--white);
}
.stats-banner__label {
  font-family: var(--font-accent);
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  max-width: 18ch;
  margin-inline: auto;
}

/* Keep old stats styles for other pages if used */
.stats {
  margin-top: -1rem;
  position: relative;
  z-index: 5;
  padding-bottom: 0;
  padding-top: 2rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.stat-card {
  text-align: center;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--border-light);
}
.stat-card:last-child { border-right: none; }
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-card__num span { color: var(--teal); }
.stat-card__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== ABOUT ========== */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media {
  position: relative;
}
.about__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--navy-soft), var(--medical-blue));
  box-shadow: var(--shadow-lg);
}
.about__img img,
.about__img .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  gap: 0.75rem;
  background: linear-gradient(145deg, #132f52, #1a5f9e 70%, #0d7a70);
}
.photo-placeholder i { font-size: 4rem; opacity: 0.5; }
.about__accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 55%;
  height: 55%;
  border: 2px solid var(--teal);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}
.qual-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.qual-list i {
  color: var(--teal);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ========== SPECIALIZATION ========== */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.spec-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.spec-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--medical-blue), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.spec-card:hover::before { opacity: 1; }
.spec-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-muted);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.spec-card:hover .spec-card__num { color: rgba(26, 95, 158, 0.15); }
.spec-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--medical-blue);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.15rem;
  transition: background var(--transition), color var(--transition);
}
.spec-card:hover .spec-card__icon {
  background: var(--medical-blue);
  color: var(--white);
}
.spec-card h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.spec-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.spec-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--medical-blue);
}
.spec-card__link:hover { gap: 0.65rem; color: var(--navy); }

/* ========== SERVICES ========== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--medical-blue); color: var(--medical-blue); }
.filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card.is-hidden { display: none; }
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-soft), var(--teal-muted));
  color: var(--medical-blue);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1rem;
}
.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card__link:hover { color: var(--navy); }

/* ========== PROCEDURES ========== */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.proc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--navy);
}
.proc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.proc-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--navy-soft) 0%, var(--medical-blue) 70%, var(--teal) 100%);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.25);
  font-size: 3rem;
  transition: transform 0.5s ease;
}
.proc-card:hover .proc-card__img,
.proc-card:hover .proc-card__placeholder { transform: scale(1.06); }
.proc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 21, 40, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.proc-card h3 {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
}
.proc-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proc-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ========== WHY CHOOSE ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.65rem;
  display: flex;
  gap: 1rem;
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--teal-muted);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.why-card h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ========== MEN'S HEALTH ========== */
.mens-health {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(13, 148, 136, 0.12) 0%, transparent 50%),
    var(--bg-soft);
}
.mens-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.mens-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}
.mens-tag {
  padding: 0.55rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--navy);
  transition: border-color var(--transition), color var(--transition);
}
.mens-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.mens-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.mens-panel h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.mens-panel ul {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.mens-panel li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.mens-panel li i { color: var(--teal); }

/* ========== FEATURE SECTIONS (Kidney / Prostate) ========== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.feature-split--reverse .feature-split__content { order: 2; }
.feature-split--reverse .feature-split__media { order: 1; }
.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.feature-list i {
  color: var(--medical-blue);
  margin-top: 0.2rem;
}
.feature-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, var(--navy-soft), var(--medical-blue));
}
.feature-media .photo-placeholder,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prostate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.prostate-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.prostate-card:hover {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.prostate-card i {
  color: var(--medical-blue);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.prostate-card h3 {
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.prostate-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ========== ONCOLOGY (dark) ========== */
.oncology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}
.oncology-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.oncology-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(20, 184, 166, 0.4);
}
.oncology-card i {
  font-size: 1.75rem;
  color: var(--teal-soft);
  margin-bottom: 1rem;
}
.oncology-card h3 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.oncology-card p {
  font-size: 0.85rem;
  opacity: 0.75;
}
.oncology-note {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ========== PATIENT JOURNEY ========== */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--teal), var(--border));
  z-index: 0;
}
.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.journey-step__num {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition);
}
.journey-step:hover .journey-step__num {
  background: var(--teal);
  color: var(--white);
}
.journey-step h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.journey-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 200px;
  margin-inline: auto;
}

/* ========== VIDEOS ========== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
  width: 100%;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 31, 58, 0.25);
  transition: background var(--transition);
}
.video-card:hover .video-card__play { background: rgba(11, 31, 58, 0.4); }
.video-card__play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--medical-blue);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  padding-left: 3px;
}
.video-card__body { padding: 1.15rem 1.25rem 1.35rem; }
.video-card__body h3 {
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--navy);
  line-height: 1.4;
}

/* ========== TESTIMONIALS ========== */
.testimonials-wrap {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
}
.testimonial-slider {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial {
  flex: 0 0 100%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.testimonial__stars {
  color: var(--star);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  font-family: var(--font-accent);
  font-weight: 650;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.testimonial__author span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.slider-dots {
  display: flex;
  gap: 0.45rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.is-active {
  background: var(--medical-blue);
  transform: scale(1.25);
}

/* ========== FAQ ========== */
.faq-section {
  background: #eef6fb;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
.faq-visual {
  position: relative;
  padding-bottom: 4.5rem;
}
.faq-visual__img {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #dbeafe, #bfdbfe);
}
.faq-visual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.faq-visual__card {
  position: absolute;
  left: 1rem;
  bottom: 0;
  width: min(88%, 280px);
  background: #0b1f3a;
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: var(--shadow-lg);
}
.faq-visual__badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5c518;
  color: #0b1f3a;
  display: grid;
  place-items: center;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.faq-visual__card p {
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 1rem;
}
.faq-visual__btn {
  background: #3d5169;
  color: var(--white);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
}
.faq-visual__btn:hover {
  background: #4a617c;
  color: var(--white);
}
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.faq-eyebrow i { color: var(--teal); }
.faq-title {
  font-family: var(--font-accent);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.faq-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}
.faq-list {
  max-width: none;
  margin-inline: 0;
  display: grid;
  gap: 0.85rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.is-open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(13, 148, 136, 0.35);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--navy);
  line-height: 1.4;
}
.faq-question span { flex: 1; }
.faq-question i {
  color: var(--navy);
  transition: transform var(--transition);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
  color: var(--teal);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer__inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}
.faq-item.is-open .faq-answer { max-height: 520px; }

/* ========== LOCATIONS ========== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.location-card__map {
  aspect-ratio: 16 / 9;
  background: var(--bg-muted);
  position: relative;
}
.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.location-card__map-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  background:
    linear-gradient(135deg, var(--bg-soft) 25%, transparent 25%) -10px 0 /
      20px 20px,
    linear-gradient(225deg, var(--bg-soft) 25%, transparent 25%) -10px 0 /
      20px 20px,
    linear-gradient(315deg, var(--bg-soft) 25%, transparent 25%) 0px 0 /
      20px 20px,
    linear-gradient(45deg, var(--bg-soft) 25%, var(--bg-muted) 25%) 0px 0 /
      20px 20px;
}
.location-card__body { padding: 1.75rem; }
.location-card__body h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.location-card__area {
  font-size: 0.88rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1rem;
}
.location-card__meta {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.location-card__meta i {
  color: var(--medical-blue);
  width: 18px;
  margin-right: 0.4rem;
}
.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ========== CTA BAND ========== */
.cta-band {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26, 95, 158, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(13, 148, 136, 0.25) 0%, transparent 50%),
    var(--navy-deep);
  color: var(--white);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.cta-band p {
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.cta-band .btn-group { justify-content: center; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}
.contact-info {
  display: grid;
  gap: 1.25rem;
}
.contact-info__card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.contact-info__card h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.contact-info__card a,
.contact-info__card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-info__card a:hover { color: var(--medical-blue); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-ways {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--white);
}
.contact-ways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-way {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  padding: 14.5rem 1.35rem 2.75rem;
  background-color: #f4f6f7;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.contact-way--call {
  background-color: #ffd675;
  background-image: url("../images/contact/ct-call.jpg");
}
.contact-way--visit {
  background-color: #d7e8f2;
  background-image: url("../images/contact/ct-visit.jpg");
}
.contact-way--message {
  background-color: #f2f4f6;
  background-image: url("../images/contact/ct-message.jpg");
}
.contact-way__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #09243c;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(9, 36, 60, 0.18);
}
.contact-way__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-weight: 700;
  color: #051b2e;
  line-height: 1.25;
}
.contact-way__text {
  margin: 0 0 1.5rem;
  max-width: 28ch;
  color: #051b2e;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}
.contact-way__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  padding: 0 1.65rem;
  border: 0;
  border-radius: 13px;
  background: #09243c;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-way__btn:hover {
  background: #051b2e;
  color: #fff;
  transform: translateY(-1px);
}
.contact-way__btn span {
  font-size: 1.05em;
  line-height: 1;
}
.contact-maps {
  padding-top: 0.5rem;
  background: var(--off-white);
}
.contact-form-section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--white);
}
.contact-form-section__inner {
  max-width: 720px;
  margin-inline: auto;
}
.contact-form-section .section-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--medical-blue);
  box-shadow: 0 0 0 3px rgba(26, 95, 158, 0.12);
  background: var(--white);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group.is-error input,
.form-group.is-error select,
.form-group.is-error textarea {
  border-color: var(--danger);
}
.form-error {
  display: none;
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 0.3rem;
}
.form-group.is-error .form-error { display: block; }
.form-success {
  display: none;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  color: var(--success);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.form-success.is-visible { display: block; }

/* ========== FOOTER ========== */
.site-footer {
  background: #f7fafc;
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
}
.footer-panel {
  background: linear-gradient(145deg, #0a3d4a 0%, #0c5c52 42%, #0f8a5f 100%);
  border-radius: clamp(1.1rem, 2vw, 1.5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.16);
}
.footer-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.35rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: min(320px, 100%);
}
.footer-logo__img {
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.footer-panel__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: right;
}
.footer-panel__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.25fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col__mail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}
.footer-col__mail a {
  color: rgba(255, 255, 255, 0.92);
}
.footer-col__mail a:hover { color: var(--white); }
.footer-col__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col__phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-col__cta {
  background: #0b1f3a;
  color: var(--white);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  box-shadow: none;
}
.footer-col__cta:hover {
  background: #061528;
  color: var(--white);
}
.footer-col__list {
  display: grid;
  gap: 0.7rem;
}
.footer-col__list a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}
.footer-col__list a:hover { color: var(--white); }
.footer-loc {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.footer-loc:last-of-type {
  border-bottom: none;
  margin-bottom: 0.75rem;
}
.footer-loc p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.45rem;
}
.footer-loc__hours {
  font-size: 0.9rem !important;
}
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.footer-copy {
  background: var(--white);
  text-align: center;
  padding: 1.15rem 1rem;
  margin-top: 1.25rem;
}
.footer-copy p {
  font-size: 0.9rem;
  color: #8a9bb0;
}
.footer-copy strong {
  color: #4a5d72;
  font-weight: 700;
}

/* Legacy footer hooks (other pages during transition) */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
}

/* ========== FLOATING / MOBILE CTA ========== */
.float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}
.float-btn--whatsapp { background: var(--whatsapp); }
.float-btn--call { background: var(--medical-blue); }
.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(11, 31, 58, 0.08);
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.mobile-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
}
.mobile-cta a i { font-size: 1.15rem; }
.mobile-cta a:nth-child(1) i { color: var(--medical-blue); }
.mobile-cta a:nth-child(2) i { color: var(--whatsapp); }
.mobile-cta a:nth-child(3) {
  background: var(--medical-blue);
  color: var(--white);
}
.mobile-cta a:nth-child(3) i { color: var(--white); }

/* ========== MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 40, 0.65);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(100%, 520px);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
}
.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}
.modal__dialog--video {
  width: min(100%, 860px);
  padding: 0;
  background: #000;
  overflow: hidden;
}
.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background var(--transition);
}
.modal__close:hover { background: var(--border); }
.modal__dialog--video .modal__close {
  background: rgba(255,255,255,0.9);
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  padding-right: 2rem;
}
.modal__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.video-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
body.modal-open,
body.nav-open { overflow: hidden; }

/* ========== DOCTOR PROFILE PAGE ========== */
.doctor-banner {
  padding: 1.5rem 0 0;
  background: var(--off-white);
  border-bottom: none;
}
.doctor-banner__card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.doctor-banner__hero {
  position: relative;
  background: #0f2a4a;
  min-height: 200px;
  line-height: 0;
}
.doctor-banner__img {
  width: 100%;
  height: auto;
  max-height: min(36vw, 340px);
  object-fit: cover;
  object-position: right center;
  display: block;
}
.doctor-banner__crumb {
  position: absolute;
  right: 1.25rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.doctor-banner__crumb a:hover { color: #ffcc53; }
.doctor-banner__crumb-current {
  color: #f5a623;
  font-weight: 600;
}
.doctor-banner__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.75rem;
  background: var(--white);
}
.doctor-banner__lead {
  flex: 1 1 280px;
  margin: 0;
  max-width: 42rem;
  color: #4a5568;
  font-size: 0.98rem;
  line-height: 1.55;
}
.doctor-banner__lead strong { color: #1a2b3c; font-weight: 700; }
.doctor-banner__support {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.doctor-banner__phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f2a4a;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.doctor-banner__support-text {
  display: grid;
  gap: 0.15rem;
}
.doctor-banner__support-label {
  font-size: 0.8rem;
  color: #8a9bb0;
}
.doctor-banner__support-text a {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2b3c;
  letter-spacing: 0.01em;
}
.doctor-banner__support-text a:hover { color: var(--medical-blue); }

.doctor-banner__hero--page {
  min-height: 220px;
  background: #0f2a4a;
}
.doctor-banner__img--page {
  max-height: min(38vw, 320px);
  min-height: 220px;
  object-fit: cover;
  object-position: center 30%;
}
.doctor-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 36, 60, 0.15) 0%, rgba(9, 36, 60, 0.72) 100%),
    url("../images/services/svc-banner-overlay.png") bottom center / auto no-repeat;
  pointer-events: none;
}
.doctor-banner__page-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.75rem 1.15rem;
}
.doctor-banner__page-title {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.doctor-banner__crumb--page {
  position: static;
  flex-shrink: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ========== SERVICE DETAIL PAGE ========== */
.svc-detail { padding-top: 2.5rem; }
.svc-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.7fr);
  gap: 2.5rem 2.75rem;
  align-items: start;
}
.svc-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.svc-detail__intro p,
.svc-detail__block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.svc-detail__block { margin-top: 2.75rem; }
.svc-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}
.svc-detail__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}
.svc-detail__chips i { color: var(--teal); font-size: 0.75rem; }
.svc-detail__feature {
  margin: 1.75rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: #1a1a1a;
  line-height: 0;
}
.svc-detail__feature img {
  width: 100%;
  height: auto;
  display: block;
}
.svc-detail__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
}
.svc-detail__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: #1a1a1a;
}
.svc-detail__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.svc-prevent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.svc-prevent {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-xs);
}
.svc-prevent__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #0c5474, #047d63);
  color: var(--white);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}
.svc-prevent__title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 0.55rem;
}
.svc-prevent p {
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}
.svc-prevent__note {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  margin-bottom: 0 !important;
}
.svc-trust__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}
.svc-trust__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.svc-trust__list span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f2a4a;
  color: var(--white);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.svc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.svc-step {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.35rem;
  border: 1px solid var(--border-light);
}
.svc-step__num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(160deg, #0c5474, #047d63);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.svc-step__title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 0.55rem;
}
.svc-step p {
  font-size: 0.92rem;
  margin: 0;
}
.svc-detail__faq-lead {
  margin-bottom: 1.25rem !important;
}
.svc-detail .faq-list { margin-top: 0.5rem; }
.svc-detail .faq-item.is-open .faq-answer { max-height: 640px; }

.svc-detail__aside {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  display: grid;
  gap: 1.25rem;
}
.svc-aside-card,
.svc-aside-help {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.25rem;
}
.svc-aside-card__title,
.svc-aside-help__title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.35;
}
.svc-aside-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.svc-aside-card__list a {
  display: block;
  padding: 0.7rem 0.35rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}
.svc-aside-card__list li:last-child a { border-bottom: none; }
.svc-aside-card__list a:hover,
.svc-aside-card__list a.is-active {
  color: var(--medical-blue);
}
.svc-aside-card__list a.is-active { font-weight: 700; }
.svc-aside-help {
  background: linear-gradient(165deg, #0c5474 0%, #047d63 100%);
  border: none;
  color: var(--white);
}
.svc-aside-help__title { color: var(--white); }
.svc-aside-help__block { margin-bottom: 1.1rem; }
.svc-aside-help__block h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
  color: #ffcc53;
  font-weight: 700;
}
.svc-aside-help__block p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.svc-aside-help__block a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.svc-aside-help .btn {
  margin-top: 0.35rem;
  background: #ffcc53;
  color: #0b1f3a;
  border: none;
}
.svc-aside-help .btn:hover {
  background: #ffd675;
  color: #0b1f3a;
}

.doctor-banner__hero--services {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}
.doctor-banner__hero--services .doctor-banner__copy {
  display: flex;
  align-items: center;
  padding: 2.75rem 2rem 3.25rem;
  position: relative;
  z-index: 1;
  background: #0f2a4a;
}
.doctor-banner__title {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.doctor-banner__photo--banner {
  position: relative;
  min-height: 220px;
  background: #0f2a4a;
}
.doctor-banner__photo--banner .doctor-banner__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.doctor-banner__hero--services .doctor-banner__crumb {
  z-index: 2;
}

/* Services feature cards + success CTA */
.svc-features {
  padding-top: 0.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--white);
}
.svc-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-feature {
  border: none;
  border-radius: 18px;
  padding: 2.25rem 1.65rem 1.85rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}
.svc-feature--gray {
  background: #f2f4f7;
}
.svc-feature--blue {
  background: linear-gradient(180deg, #e8f1fb 0%, #d7e8f8 100%);
}
.svc-feature--orange {
  background: linear-gradient(180deg, #fdf0e4 0%, #f8e0c8 100%);
}
.svc-feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f2a4a;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.svc-feature__title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f2a4a;
  margin: 0;
  line-height: 1.3;
}
.svc-feature p {
  color: #5b6b7c;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
  max-width: 28ch;
}
.svc-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0f2a4a;
  margin-top: 0.5rem;
}
.svc-feature__link:hover { color: var(--medical-blue); }
.svc-feature__link span { font-size: 1.05em; line-height: 1; }

.svc-success {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--off-white);
}
.svc-success__card {
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.18), transparent 40%),
    linear-gradient(135deg, #061528 0%, #0b1f3a 50%, #0a3d45 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.svc-success__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffcc53;
  margin-bottom: 0.75rem;
}
.svc-success__title {
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  max-width: 36rem;
  margin: 0 0 1.75rem;
  line-height: 1.3;
}
.svc-success__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}
.svc-success__stat {
  flex-shrink: 0;
  min-width: 140px;
}
.svc-success__num {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffcc53;
  line-height: 1;
}
.svc-success__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.35rem;
}
.svc-success__copy {
  flex: 1 1 240px;
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.6;
}
.svc-success .btn--primary {
  flex-shrink: 0;
}

.doctor-page { padding-top: clamp(2.5rem, 5vw, 3.5rem); }

.doctor-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.doctor-aside {
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.doctor-contact-card {
  background: linear-gradient(160deg, #062a38 0%, #0a4a46 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  text-align: center;
}
.doctor-contact-card__title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.doctor-contact-card__support {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}
.doctor-contact-card__phone {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffcc53;
  letter-spacing: 0.01em;
}
.doctor-contact-card__phone:hover { color: #ffe08a; }

.doctor-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.doctor-card__media {
  aspect-ratio: 4 / 4.4;
  background: var(--bg-soft);
  overflow: hidden;
}
.doctor-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.doctor-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
}
.doctor-card__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.doctor-card__role {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.doctor-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.55rem;
}
.doctor-card__meta i { color: var(--teal); font-size: 0.85em; }
.doctor-card__meta:hover { color: var(--medical-blue); }
.doctor-card__cta { margin-top: 1rem; }

.doctor-facts {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}
.doctor-facts__row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9rem) 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
}
.doctor-facts__row dt {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.doctor-facts__row dd {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.doctor-bio h2 { margin-top: 1.75rem; }
.doctor-qual-list {
  list-style: none;
  margin: 0 0 0.5rem;
  display: grid;
  gap: 0.55rem;
}
.doctor-qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.doctor-qual-list i {
  margin-top: 0.3rem;
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 95, 158, 0.08) 0%, transparent 50%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a:hover { color: var(--medical-blue); }
.breadcrumb i { font-size: 0.65rem; opacity: 0.6; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.page-hero p {
  max-width: 580px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ========== CONTENT PAGES ========== */
.content-block {
  max-width: 720px;
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}
.content-block h3 {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.65rem;
}
.content-block p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.content-block ul {
  margin: 0 0 1.25rem 1.15rem;
  list-style: disc;
  color: var(--text-secondary);
}
.content-block ul li { margin-bottom: 0.4rem; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}
.sidebar-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.sidebar-card h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.sidebar-card ul { display: grid; gap: 0.5rem; margin-bottom: 1.5rem; }
.sidebar-card a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sidebar-card a:hover { color: var(--medical-blue); }
.sidebar-card a i { font-size: 0.7rem; color: var(--teal); }

/* ========== DISCLAIMER ========== */
.medical-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  border-left: 3px solid var(--border);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 2rem;
}

/* Horizontal scroll helper for mobile service chips */
.scroll-x {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.scroll-x::-webkit-scrollbar { display: none; }
.scroll-x > * { scroll-snap-align: start; flex-shrink: 0; }
