/* ═══════════════════════════════════════
   Dr. Nishanth Ponaganti — Professional Site
   ═══════════════════════════════════════ */

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

:root {
  --navy: #00214b;
  --navy-mid: #0a3d7a;
  --navy-light: #1a5a9e;
  --teal: #1c60b8;
  --teal-light: #3d8ad4;
  --gold: #5eb3e8;
  --gold-light: #9fd0f5;
  --white: #ffffff;
  --off-white: #f4f8fd;
  --gray-50: #eef4fb;
  --gray-100: #d9e6f4;
  --gray-200: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --text: #0f2744;
  --text-muted: #4a6078;
  --shadow-sm: 0 2px 8px rgba(0, 33, 75, 0.06);
  --shadow: 0 4px 24px rgba(0, 33, 75, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 33, 75, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 33, 75, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --topbar-h: 40px;
  --header-h: 76px;
  --total-header: calc(var(--topbar-h) + var(--header-h));
  --sky: #5eb3e8;
  --sky-soft: #eaf4fc;
  --grad-soft: linear-gradient(165deg, #f8fbff 0%, #eaf3fc 48%, #e2eef9 100%);
  --grad-hero: linear-gradient(160deg, #f8fbff 0%, #eaf4fc 42%, #dceefb 100%);
  --grad-section: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
  --grad-section-alt: linear-gradient(
    180deg,
    #f4f8fd 0%,
    #ffffff 55%,
    #eef5fb 100%
  );
  --grad-btn: linear-gradient(135deg, #1c60b8 0%, #0a3d7a 100%);
  --grad-btn-hover: linear-gradient(135deg, #3d8ad4 0%, #1c60b8 100%);
  --grad-topbar: linear-gradient(165deg, #e7f3fc 0%, #d4ebf8 48%, #c3e2f4 100%);
  --grad-footer: linear-gradient(165deg, #e7f3fc 0%, #d4ebf8 48%, #c3e2f4 100%);
  --grad-cta: linear-gradient(135deg, #f7fbff 0%, #e6f1fb 48%, #d4e7f6 100%);
  --grad-banner: linear-gradient(160deg, #f8fbff 0%, #e8f3fc 45%, #d9ecf8 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--total-header);
  -webkit-text-size-adjust: 100%;
}

/* Skip link + keyboard focus (a11y) */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.btn:focus-visible,
.nav__link:focus-visible,
.footer__social-btn:focus-visible,
.float-btn:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .svc-hero-full__img--kenburns {
    animation: none !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: calc(var(--total-header) + 0.5rem);
  }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--grad-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  padding-top: var(--total-header);
}

@media (min-width: 1025px) {
  body {
    background-attachment: fixed;
  }
}

body.nav-open {
  overflow: hidden;
}

/* Fixed header — topbar + nav stay visible on scroll (mobile & desktop) */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header-shell {
  width: 100%;
  background: var(--grad-footer);
  transition: box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 300;
}

.site-header-shell:has(.header--scrolled),
#site-header.is-scrolled .site-header-shell {
  box-shadow: 0 4px 24px rgba(0, 33, 75, 0.1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

p,
li,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

button,
a {
  -webkit-tap-highlight-color: rgba(28, 96, 184, 0.15);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Top Bar ── */
.topbar {
  background: transparent;
  color: var(--navy);
  font-size: 0.8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(28, 96, 184, 0.12);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.topbar__item:hover {
  color: var(--teal);
}

.topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(28, 96, 184, 0.2);
}

.topbar__email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Header ── */
.header {
  position: relative;
  z-index: 201;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(21, 77, 142, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: visible;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
}

.header--scrolled {
  border-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

#site-header.is-scrolled .header {
  border-color: var(--gray-100);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header__call {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 4px 14px rgba(28, 96, 184, 0.28);
}

.header__book {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  min-height: 42px;
  white-space: nowrap;
}

.header__book svg,
.nav__cta svg {
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
}

.logo__img--footer {
  height: 56px;
  max-width: 240px;
}

.logo__mark {
  width: 44px;
  height: 44px;
  color: var(--teal);
  flex-shrink: 0;
}

.logo__mark svg {
  width: 100%;
  height: 100%;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo__title {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.logo--footer .logo__name {
  color: var(--navy);
}
.logo--footer .logo__mark {
  color: var(--teal);
}
.logo--footer .logo__title {
  color: var(--teal);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--total-header);
  background: rgba(0, 33, 75, 0.45);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop--visible {
  display: block;
  opacity: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(28, 96, 184, 0.28);
}

.btn--primary:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 96, 184, 0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(28, 96, 184, 0.04);
}

.btn--white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--grad-hero);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: radial-gradient(
      circle at 18% 40%,
      rgba(94, 179, 232, 0.22) 0%,
      transparent 48%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(28, 96, 184, 0.12) 0%,
      transparent 42%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(28, 96, 184, 0.08);
  border: 1px solid rgba(28, 96, 184, 0.15);
  color: var(--teal);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--teal);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero__creds span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-mid);
  background: #fff;
  border: 1px solid var(--gray-100);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__location svg {
  color: var(--teal);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.hero__image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-mid), var(--teal));
  box-shadow: var(--shadow-xl);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero__image-placeholder svg {
  width: 80px;
  height: 80px;
}
.hero__image-placeholder span {
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero__card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.hero__card span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__card--exp {
  bottom: 2rem;
  left: -2rem;
}
.hero__card--patients {
  top: 2rem;
  right: -1.5rem;
}

/* ── Stats ── */
.stats {
  padding: 0 0 4rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.5rem;
  border: 1px solid var(--gray-100);
}

.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

.stat__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.1),
    rgba(0, 33, 75, 0.06)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.stat__icon svg {
  width: 24px;
  height: 24px;
}

.stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat__suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}

.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section__eyebrow--light {
  color: var(--gold-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__title--light {
  color: #fff;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ── About ── */
.about {
  background: var(--grad-section-alt);
  padding-top: 0;
}

.about .container {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about__image-frame {
  position: relative;
}

.about__image {
  aspect-ratio: 3/4;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy), var(--teal));
  box-shadow: var(--shadow-xl);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}

.about__image-placeholder svg {
  width: 100px;
  height: 100px;
}

.about__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.about__badge svg {
  color: var(--teal);
  flex-shrink: 0;
}

.about__role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.qual {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.qual:hover {
  box-shadow: var(--shadow);
  border-color: rgba(28, 96, 184, 0.2);
}

.qual__icon {
  width: 40px;
  height: 40px;
  background: rgba(28, 96, 184, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.qual__icon svg {
  width: 20px;
  height: 20px;
}

.qual strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.qual span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* About Info Cards */
.about__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-100);
}

.info-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(28, 96, 184, 0.2);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.1),
    rgba(0, 33, 75, 0.05)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Page Banner ── */
.page-banner {
  background: var(--grad-banner);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(94, 179, 232, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(21, 77, 142, 0.08) 0%,
      transparent 45%
    );
  z-index: 0;
}

.page-banner--about,
.page-banner--services,
.page-banner--contact,
.page-banner--gallery,
.page-banner--blog {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner--about {
  background-image: linear-gradient(
      160deg,
      rgba(247, 251, 255, 0.9) 0%,
      rgba(228, 241, 251, 0.84) 100%
    ),
    url("../images/site/banner-about.webp");
  border-bottom: 3px solid var(--sky);
}

.page-banner--services {
  background-image: linear-gradient(
      160deg,
      rgba(247, 251, 255, 0.9) 0%,
      rgba(228, 241, 251, 0.84) 100%
    ),
    url("../images/site/banner-services.webp");
  border-bottom: 3px solid var(--sky);
}

.page-banner--contact {
  background-image: none;
  background: var(--grad-banner);
  border-bottom: 3px solid var(--sky);
}

.page-banner--gallery {
  background-image: linear-gradient(
      160deg,
      rgba(247, 251, 255, 0.9) 0%,
      rgba(228, 241, 251, 0.84) 100%
    ),
    url("../images/site/hero-clinic.webp");
  border-bottom: 3px solid var(--sky);
}

.page-banner--blog {
  background-image: linear-gradient(
      160deg,
      rgba(247, 251, 255, 0.9) 0%,
      rgba(228, 241, 251, 0.84) 100%
    ),
    url("../images/site/banner-about.webp");
  border-bottom: 3px solid var(--sky);
}

.container--narrow {
  max-width: 760px;
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.page-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.page-banner__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.gallery--page {
  padding-top: 4rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.gallery__item {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 33, 75, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
}

.gallery-lightbox__img {
  max-width: min(900px, 92vw);
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-align: center;
  max-width: 600px;
}

/* Blog */
.blog--page {
  padding-top: 4rem;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 33, 75, 0.85);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
}

.blog-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 0.75rem;
}

.blog-post {
  padding: 2.5rem 0 3rem;
}

.blog-post__crumb {
  margin-bottom: 1.75rem;
  text-align: left;
}

.blog-article__hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
  aspect-ratio: 16 / 9;
}

.blog-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1.75rem;
}

.blog-article__content {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.blog-article__content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}

.blog-article__content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.blog-article__content a {
  color: var(--teal);
  font-weight: 600;
}

.blog-list {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

.blog-list li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.blog-figure {
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-figure img {
  width: 100%;
  display: block;
}

.blog-figure figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.6rem 0.85rem;
  background: var(--off-white);
  font-style: italic;
}

.blog-cta {
  background: var(--grad-cta);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  border: 1px solid rgba(21, 77, 142, 0.1);
}

.blog-cta p {
  margin: 0;
  color: var(--text);
}

.blog-cta a {
  color: var(--teal);
}

.blog-article__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.blog-related {
  background: var(--off-white);
  padding: 3rem 0 4rem;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.blog-related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-related-card div {
  padding: 0.85rem 1rem 1rem;
}

.blog-related-card time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.blog-related-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.home-blog__slider {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}

.home-blog__slider.reveal,
.home-blog__slider.reveal.visible {
  opacity: 1;
  transform: none;
}

.home-blog__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.home-blog__track .blog-card {
  flex: 0 0 clamp(280px, 32vw, 400px);
  min-width: 0;
  width: clamp(280px, 32vw, 400px);
}

.home-blog__track .blog-card:hover {
  transform: none;
}

.spec-card--image {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.spec-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.spec-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spec-card--image:hover .spec-card__media img {
  transform: scale(1.06);
}

.spec-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.spec-card--image .spec-card__icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.spec-card--image h3,
.spec-card--image p {
  margin-left: 0;
}

/* Home services slider */
.home-services {
  background: var(--grad-section);
  padding: 0;
}

.home-services__slider {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}

.home-services__slider.reveal,
.home-services__slider.reveal.visible {
  opacity: 1;
  transform: none;
}

.home-services__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.home-services__track .home-svc-card {
  flex: 0 0 clamp(260px, 28vw, 360px);
  min-width: 0;
  width: clamp(260px, 28vw, 360px);
}

.home-services__track .home-svc-card:hover {
  transform: none;
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 96, 184, 0.2);
}

.home-services__dots {
  display: none;
}

.home-services__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-services__dot.active {
  background: var(--teal);
  transform: scale(1.25);
}

.home-svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.home-svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(28, 96, 184, 0.2);
}

.home-svc-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.home-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-svc-card:hover .home-svc-card__img img {
  transform: scale(1.05);
}

.home-svc-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.home-svc-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.home-svc-card__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-svc-card__link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
}

.why__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.why__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-clinic-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
}

.contact-clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-card--image {
  padding: 0;
  overflow: hidden;
}

.info-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.info-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.info-card--image:hover .info-card__thumb img {
  transform: scale(1.05);
}

.info-card--image .info-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.info-card--image .info-card__icon {
  margin-bottom: 0.85rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb span {
  color: var(--navy);
  font-weight: 500;
}

.breadcrumb__sep {
  color: rgba(21, 77, 142, 0.35);
  margin: 0 0.15rem;
}

/* Page-specific sections */
.about--page,
.services--page,
.service-details--page,
.contact--page {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.about--page {
  background: var(--off-white);
}
.services--page {
  background: var(--grad-section);
}
.service-details--page {
  background: var(--off-white);
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.service-details--page .svc-layout {
  grid-template-columns: 300px 1fr;
  gap: 2.25rem;
}
.contact--page {
  background: var(--off-white);
  padding-top: 3.5rem;
}

.service-details__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ── Trust Bar ── */
.svc-trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.75rem 0;
}

.svc-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.svc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.svc-trust-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.12),
    rgba(0, 33, 75, 0.06)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.svc-trust-item__icon svg {
  width: 22px;
  height: 22px;
}

.svc-trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.svc-trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── SEO Intro Pro ── */
.seo-intro--pro {
  background: var(--off-white);
  padding: 2.25rem 0 1.5rem;
  border-bottom: none;
}

.seo-intro__card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.seo-intro__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.seo-intro__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.seo-intro__text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.seo-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.seo-intro__pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-mid);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.seo-intro__pill svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── Service Details Layout ── */
.svc-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.svc-sidebar {
  position: sticky;
  top: calc(var(--total-header) + 1.5rem);
  align-self: start;
  z-index: 20;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--total-header) - 3rem);
  display: flex;
  flex-direction: column;
}

/* transform on .reveal breaks position:sticky — fade only on sidebar */
.svc-sidebar.reveal {
  transform: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.svc-sidebar.reveal.visible {
  opacity: 1;
  transform: none;
}

.svc-sidebar__search {
  position: relative;
  margin-bottom: 1rem;
}

.svc-sidebar__search svg {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  pointer-events: none;
}

.svc-sidebar__search input {
  width: 100%;
  padding: 0.7rem 0.85rem 0.7rem 2.35rem;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-sidebar__search input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 96, 184, 0.12);
  background: var(--white);
}

.svc-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-right: 0.25rem;
}

.svc-sidebar__nav::-webkit-scrollbar {
  width: 4px;
}
.svc-sidebar__nav::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 4px;
}

.svc-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.svc-nav-link:hover {
  background: var(--off-white);
  color: var(--navy);
}

.svc-nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.1),
    rgba(0, 33, 75, 0.04)
  );
  color: var(--navy);
  border-color: rgba(28, 96, 184, 0.2);
}

.svc-nav-link__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background 0.2s;
}

.svc-nav-link__icon svg {
  width: 16px;
  height: 16px;
}

.svc-nav-link__thumb {
  width: 40px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--gray-100);
  background: var(--navy);
}

.svc-nav-link__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-nav-link.active .svc-nav-link__thumb {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(28, 96, 184, 0.2);
}

.svc-nav-link.active .svc-nav-link__icon {
  background: var(--teal);
  color: var(--white);
}

.svc-nav-link__text {
  flex: 1;
  line-height: 1.35;
}

.svc-nav-link__count {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  background: var(--gray-50);
  padding: 0.15rem 0.45rem;
  border-radius: 50px;
  flex-shrink: 0;
}

.svc-nav-link.active .svc-nav-link__count {
  background: rgba(28, 96, 184, 0.15);
  color: var(--teal);
}

.svc-sidebar__cta {
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
  text-align: center;
}

.svc-sidebar__cta p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.svc-sidebar__cta .btn {
  margin-bottom: 0.5rem;
}

.svc-sidebar__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.service-details--single {
  padding-top: 0;
}

.svc-layout--single {
  grid-template-columns: 260px 1fr;
}

.svc-main--single .svc-card {
  margin: 0;
}

.svc-related {
  background: var(--off-white);
}

.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.svc-related__grid--all {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.svc-related-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.svc-related-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 96, 184, 0.25);
  transform: translateY(-4px);
}

.svc-related-card__img {
  aspect-ratio: 21 / 9;
  min-height: 200px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}

.svc-related-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 33, 75, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-related-card__overlay span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svc-related-card:hover .svc-related-card__overlay {
  opacity: 1;
}

.svc-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-related-card:hover .svc-related-card__img img {
  transform: scale(1.05);
}

.svc-related-card__body {
  padding: 1.25rem;
}

.svc-related-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.svc-related-card__body p {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0;
}

.svc-related-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
}

/* ── Service Cards ── */
.svc-main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 0;
  scroll-margin-top: calc(var(--total-header) + 1rem);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 96, 184, 0.15);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card--highlight {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 96, 184, 0.12), var(--shadow-lg);
}

.svc-card--highlight::before {
  opacity: 1;
}

.svc-card__hero {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 32vw, 480px);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--navy);
}

.svc-card__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}

.svc-card:hover .svc-card__image {
  transform: scale(1.04);
}

/* Full-width HD hero (single service pages) — no 100vw (causes mobile horizontal scroll) */
.svc-hero-full {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: clamp(420px, 58vh, 680px);
  max-height: 780px;
  overflow: hidden;
  background: var(--grad-hero);
}

.svc-hero-full__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.svc-hero-full__img--kenburns {
  animation: svcKenBurns 18s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes svcKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.svc-hero-full__mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 85%,
      rgba(21, 77, 142, 0.1) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(94, 179, 232, 0.16) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.svc-hero-full__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(247, 251, 255, 0.96) 0%,
    rgba(232, 243, 252, 0.78) 48%,
    rgba(255, 255, 255, 0.28) 100%
  );
}

.svc-hero-full__wrap {
  padding-bottom: 3.5rem;
  padding-top: 1.5rem;
}

.breadcrumb--hero {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.breadcrumb--hero a {
  color: var(--text-muted);
}
.breadcrumb--hero a:hover {
  color: var(--teal);
}
.breadcrumb--hero span {
  color: var(--navy);
}
.breadcrumb--hero .breadcrumb__sep {
  color: rgba(21, 77, 142, 0.35);
}

.svc-hero-full__content {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.svc-hero-full__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(21, 77, 142, 0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(21, 77, 142, 0.1);
}

.svc-hero-full__icon svg {
  width: 32px;
  height: 32px;
}

.svc-hero-full__text {
  flex: 1;
  min-width: 0;
}

.svc-hero-full__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.svc-hero-full__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  background: rgba(94, 179, 232, 0.14);
  border: 1px solid rgba(28, 96, 184, 0.18);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.svc-hero-full__pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(21, 77, 142, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.svc-hero-full__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.svc-hero-full__desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 1.5rem;
}

.svc-hero-full__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.svc-hero-full .btn--outline-white {
  color: var(--navy);
  border-color: rgba(21, 77, 142, 0.28);
}

.svc-hero-full .btn--outline-white:hover {
  background: rgba(21, 77, 142, 0.06);
  border-color: var(--teal);
}

/* Details pages only — 30px radius on heroes and service images */
body[data-page="service"] .svc-hero-full,
body[data-page="service-details"] .page-banner {
  border-radius: 30px;
}

body[data-page="service"] .svc-card,
body[data-page="service"] .svc-card--single,
body[data-page="service"] .svc-intro-visual,
body[data-page="service"] .sub-service-card,
body[data-page="service"] .svc-related-card,
body[data-page="service"] .svc-stats-float__grid,
body[data-page="service-details"] .svc-card,
body[data-page="service-details"] .svc-card--single,
body[data-page="service-details"] .svc-intro-visual,
body[data-page="service-details"] .sub-service-card,
body[data-page="service-details"] .svc-related-card,
body[data-page="service-details"] .seo-intro__card {
  border-radius: 30px;
}

/* Floating stats bar */
.svc-stats-float {
  position: relative;
  z-index: 2;
  margin-top: -2.75rem;
  margin-bottom: 2rem;
}

.svc-stats-float__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
}

.svc-stat-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.svc-stat-chip:hover {
  background: var(--off-white);
}

.svc-stat-chip__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.12),
    rgba(0, 33, 75, 0.06)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.svc-stat-chip__icon svg {
  width: 20px;
  height: 20px;
}

.svc-stat-chip strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.svc-stat-chip span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

#serviceHeroFull {
  line-height: 0;
}

#serviceHeroFull .svc-hero-full,
#serviceStatsBar .svc-stats-float {
  line-height: normal;
}

.svc-main--single {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.svc-main--single > #serviceMain {
  width: 100%;
}

.svc-main--single > #staticSubServices {
  margin-top: 1.25rem;
}

.service-details--single {
  padding-top: 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

/* Pro sidebar */
.svc-sidebar--pro {
  background: #fff;
  border: 1px solid rgba(0, 33, 75, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 33, 75, 0.1), 0 2px 8px rgba(0, 33, 75, 0.04);
  padding: 0.85rem;
  overflow: hidden;
  position: sticky;
  top: calc(var(--total-header) + 1.5rem);
  align-self: start;
  max-height: calc(100vh - var(--total-header) - 3rem);
}

.svc-sidebar__doctor {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, #f4f9ff 0%, #e4f0fa 100%);
  border: 1px solid rgba(21, 77, 142, 0.1);
  border-radius: 14px;
  color: var(--navy);
  box-shadow: none;
}

.svc-sidebar__doctor-photo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(21, 77, 142, 0.15);
  background: rgba(255, 255, 255, 0.6);
}

.svc-sidebar__doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-sidebar__doctor-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-sidebar__doctor-icon svg {
  width: 22px;
  height: 22px;
}

.svc-sidebar__doctor strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.svc-sidebar__doctor span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  display: block;
}

.svc-sidebar--pro .svc-sidebar__search {
  margin-bottom: 0.85rem;
}

.svc-sidebar--pro .svc-sidebar__search input {
  background: var(--off-white);
  border-radius: 12px;
  border-color: transparent;
}

.svc-sidebar--pro .svc-sidebar__heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 0.65rem;
  padding-left: 0.15rem;
}

.svc-sidebar--pro .svc-sidebar__nav {
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding-right: 0.35rem;
  max-height: min(340px, calc(100vh - var(--total-header) - 22rem));
  flex: 1 1 auto;
  min-height: 0;
}

.svc-sidebar--pro .svc-sidebar__nav::-webkit-scrollbar {
  width: 5px;
}
.svc-sidebar--pro .svc-sidebar__nav::-webkit-scrollbar-track {
  background: transparent;
}
.svc-sidebar--pro .svc-sidebar__nav::-webkit-scrollbar-thumb {
  background: rgba(28, 96, 184, 0.35);
  border-radius: 10px;
}

.svc-sidebar--pro .svc-nav-link {
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
}

.svc-sidebar--pro .svc-nav-link:hover {
  background: var(--off-white);
  border-color: rgba(0, 33, 75, 0.06);
}

.svc-sidebar--pro .svc-nav-link.active {
  background: linear-gradient(
    90deg,
    rgba(28, 96, 184, 0.12) 0%,
    rgba(28, 96, 184, 0.04) 100%
  );
  color: var(--navy);
  border-color: rgba(28, 96, 184, 0.15);
  border-left-color: var(--teal);
  box-shadow: 0 2px 12px rgba(28, 96, 184, 0.12);
}

.svc-sidebar--pro .svc-nav-link__thumb {
  width: 48px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0, 33, 75, 0.08);
  box-shadow: 0 1px 4px rgba(0, 33, 75, 0.06);
}

.svc-sidebar--pro .svc-nav-link.active .svc-nav-link__thumb {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(28, 96, 184, 0.2);
}

.svc-sidebar--pro .svc-nav-link__text {
  font-size: 0.78rem;
  line-height: 1.35;
}

.svc-sidebar--pro .svc-nav-link__count {
  min-width: 26px;
  height: 26px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(28, 96, 184, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(28, 96, 184, 0.15);
}

.svc-sidebar--pro .svc-nav-link.active .svc-nav-link__count {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.svc-sidebar__cta--pro {
  background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
  margin: 0 -0.85rem -0.85rem;
  padding: 1.35rem 1.1rem 1.25rem;
  border-radius: 0 0 18px 18px;
  border-top: 1px solid var(--gray-100);
}

.svc-sidebar__cta--pro p {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.btn--sidebar-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    #0a7a8a 40%,
    var(--navy) 100%
  );
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(28, 96, 184, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 0.55rem;
}

.btn--sidebar-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 96, 184, 0.45);
  color: #fff;
}

.btn--sidebar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid rgba(28, 96, 184, 0.35);
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--sidebar-call:hover {
  background: rgba(28, 96, 184, 0.06);
  border-color: var(--teal);
  color: var(--navy);
}

.svc-nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.14),
    rgba(0, 33, 75, 0.05)
  );
  border-left: 3px solid var(--teal);
  padding-left: calc(0.75rem - 3px);
}

/* Single service card pro */
.svc-card--single {
  border: none;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-card--single::before {
  opacity: 1;
}

.svc-intro-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  margin: 0 0 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.06),
    rgba(0, 33, 75, 0.02)
  );
  border: 1px solid rgba(28, 96, 184, 0.12);
  border-radius: var(--radius-lg);
}

.svc-intro-block__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(28, 96, 184, 0.3);
}

.svc-intro-block__icon svg {
  width: 28px;
  height: 28px;
}

.svc-intro-block__lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-top: 0.35rem;
}

.svc-intro-visual {
  margin: 0 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.svc-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card__geo--pro {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.svc-card__geo--pro strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.svc-card__geo--pro span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.svc-card__geo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(28, 96, 184, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.svc-panel--pro {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.svc-panel--pro:hover {
  box-shadow: var(--shadow);
}

.svc-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--gray-100);
}

.svc-section-head__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.12),
    rgba(0, 33, 75, 0.06)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.svc-section-head__icon svg {
  width: 18px;
  height: 18px;
}

.svc-section-head__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.svc-tags--pro li {
  font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(135deg, var(--off-white), var(--white));
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.svc-tags--pro li:hover {
  background: rgba(28, 96, 184, 0.08);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.svc-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  list-style: none;
}

.svc-treatment-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.svc-treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}

.svc-treatment-card:hover {
  background: var(--white);
  border-color: rgba(28, 96, 184, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.svc-treatment-card:hover::before {
  opacity: 1;
}

.svc-treatment-card__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
}

.svc-treatment-card__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(28, 96, 184, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 1px;
}

.svc-treatment-card__check svg {
  width: 12px;
  height: 12px;
}

.svc-treatment-card__text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

/* Sub-services — full width, one-by-one stack; height follows content */
.sub-services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.sub-services-grid--compact {
  gap: 1rem;
}

.sub-service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  width: 100%;
  align-items: stretch;
  scroll-margin-top: 6rem;
}

.sub-service-card--highlight {
  border-color: rgba(28, 96, 184, 0.45);
  box-shadow: 0 0 0 3px rgba(28, 96, 184, 0.15);
}

.sub-service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 96, 184, 0.2);
}

.sub-service-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 180px;
  max-height: 280px;
  overflow: hidden;
  background: var(--navy);
}

.sub-service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sub-service-card:hover .sub-service-card__media img {
  transform: scale(1.04);
}

.sub-service-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 33, 75, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sub-service-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-service-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 0.6rem;
}

.sub-service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.svc-panel--subs {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}

.svc-care-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.svc-care-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--off-white), var(--white));
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}

.svc-care-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.svc-care-step__num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.svc-care-step strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.svc-care-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.svc-card__footer--pro {
  background: linear-gradient(
    135deg,
    var(--off-white),
    rgba(28, 96, 184, 0.04)
  );
  margin: 0 -2rem -2rem;
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--gray-100);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.svc-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

/* Overview text */
.svc-overview {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.svc-overview--compact {
  font-size: 0.88rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--teal);
  background: linear-gradient(135deg, rgba(28, 96, 184, 0.04), var(--white));
}

/* Benefits grid */
.svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  list-style: none;
}

.svc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(28, 96, 184, 0.06), var(--white));
  border: 1px solid rgba(28, 96, 184, 0.12);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: transform 0.2s, box-shadow 0.2s;
}

.svc-benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.svc-benefit-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(28, 96, 184, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 1px;
}

.svc-benefit-item__icon svg {
  width: 14px;
  height: 14px;
}

/* Diagnostics list */
.svc-diagnostics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.svc-diagnostic-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.svc-diagnostic-item:hover {
  border-color: rgba(28, 96, 184, 0.25);
  background: var(--white);
}

.svc-diagnostic-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.1),
    rgba(0, 33, 75, 0.05)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.svc-diagnostic-item__icon svg {
  width: 16px;
  height: 16px;
}

/* Approach text */
.svc-approach-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.85;
  margin: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--off-white), var(--white));
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.svc-panel--benefits {
  background: var(--white);
  border: 1px solid var(--gray-100);
}
.svc-panel--diagnostics {
  background: var(--white);
  border: 1px solid var(--gray-100);
}
.svc-panel--approach {
  background: var(--white);
  border: 1px solid var(--gray-100);
}

/* Long-form article content */
.svc-article {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.svc-article--compact {
  gap: 1rem;
  margin: 1rem 0;
}

.svc-article__section {
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.svc-article--compact .svc-article__section {
  padding: 1.25rem 1.5rem;
}

.svc-article__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  border-radius: 4px 0 0 4px;
}

.svc-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.35;
}

.svc-article__p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.85;
  margin: 0 0 1rem;
}

.svc-article__p:last-of-type {
  margin-bottom: 0;
}

.svc-article__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.25rem;
}

.svc-article__list li {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.svc-article__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

/* Table of contents */
.svc-toc {
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--grad-cta);
  border: 1px solid rgba(21, 77, 142, 0.1);
  border-radius: var(--radius-lg);
  color: var(--navy);
}

.svc-toc__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.svc-toc__head svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.svc-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1.5rem;
}

.svc-toc__list a {
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.svc-toc__list a:hover {
  color: var(--teal);
}

.svc-toc__list li {
  counter-increment: toc;
  position: relative;
  padding-left: 1.5rem;
}

.svc-toc__list {
  counter-reset: toc;
}

.svc-toc__list li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.9;
}

/* Read time meta */
.svc-read-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
}

.svc-read-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.svc-card__body > .svc-panel--pro,
.svc-card__body > .svc-panel--treatments {
  margin-top: 1.25rem;
}

.faq-section--pro {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.faq-section--pro .faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.faq-section--pro .faq-item.active {
  border-color: rgba(28, 96, 184, 0.3);
  box-shadow: var(--shadow-lg);
}

.svc-card--no-hero .svc-card__body {
  padding-top: 2rem;
}

.svc-card__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 33, 75, 0.85) 0%,
    rgba(0, 33, 75, 0.2) 55%,
    transparent 100%
  );
}

.svc-card__icon--hero {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  margin-bottom: 0;
}

.svc-card__icon--hero svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.svc-card__hero-text {
  flex: 1;
  min-width: 0;
}

.svc-card__title--hero {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.svc-card__hero .svc-card__badge {
  background: rgba(28, 96, 184, 0.35);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-card__body {
  padding: 2rem;
}

.svc-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 0;
  padding: 2rem 2rem 0;
}

.svc-card__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.12),
    rgba(0, 33, 75, 0.06)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.svc-card__icon svg {
  width: 28px;
  height: 28px;
}

.svc-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  background: rgba(28, 96, 184, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}

.svc-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.svc-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.svc-card__geo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--navy-mid);
  background: linear-gradient(
    135deg,
    var(--off-white),
    rgba(28, 96, 184, 0.04)
  );
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--teal);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.svc-card__geo svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-card__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.svc-panel {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.svc-panel__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.svc-panel--symptoms {
  background: var(--white);
}

.svc-panel--alert {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: linear-gradient(
    135deg,
    rgba(94, 179, 232, 0.08),
    rgba(94, 179, 232, 0.03)
  );
  border-color: rgba(94, 179, 232, 0.25);
}

.svc-panel__alert-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(94, 179, 232, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.svc-panel__alert-icon svg {
  width: 18px;
  height: 18px;
}

.svc-panel--alert p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.svc-panel--treatments {
  background: var(--white);
  margin-bottom: 1.25rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.svc-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-mid);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  transition: all 0.2s;
}

.svc-tags li:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.svc-treatments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
}

.svc-treatments li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
  padding: 0.35rem 0;
}

.svc-treatments__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(28, 96, 184, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 1px;
}

.svc-treatments__check svg {
  width: 11px;
  height: 11px;
}

.svc-panel--faq {
  background: var(--off-white);
  margin-bottom: 1.5rem;
}

.svc-mini-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.svc-faq-item[open] {
  border-color: rgba(28, 96, 184, 0.25);
}

.svc-faq-item summary {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: background 0.2s;
}

.svc-faq-item summary::-webkit-details-marker {
  display: none;
}

.svc-faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.svc-faq-item[open] summary::after {
  content: "−";
}

.svc-faq-item summary:hover {
  background: var(--off-white);
}

.svc-faq-item p {
  padding: 0 1rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.svc-empty {
  background: var(--white);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}

.svc-empty p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.svc-empty a {
  color: var(--teal);
  font-weight: 600;
}

.service-details__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.section-cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.section-cta .btn {
  margin: 0 0.35rem;
}

.why .btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Specializations ── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.spec-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.spec-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.1),
    rgba(0, 33, 75, 0.05)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.spec-card__icon svg {
  width: 28px;
  height: 28px;
}

.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.spec-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Why Choose ── */
.why {
  background: var(--grad-cta);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(94, 179, 232, 0.18) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(21, 77, 142, 0.08) 0%,
      transparent 45%
    );
}

.why__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.why__grid:has(.why__visual) {
  grid-template-columns: 1fr 0.75fr 0.9fr;
  align-items: center;
}

.why .section__eyebrow--light {
  color: var(--teal);
}
.why .section__title--light {
  color: var(--navy);
}

.why__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(21, 77, 142, 0.08);
}

.why__list li svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.why__steps {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 77, 142, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.why__steps h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(21, 77, 142, 0.08);
}

.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
}

.step strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Services ── */
.services {
  background: var(--grad-section);
  padding-top: 0;
}

.services .container {
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}

.services__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover {
  border-color: rgba(28, 96, 184, 0.35);
  color: var(--teal);
}

.filter-btn.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 96, 184, 0.22);
  transform: translateY(-3px);
}

.service-card.hidden {
  display: none;
}

.service-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
  padding: 1.35rem 1.5rem 1.5rem;
}

.service-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-card__title a {
  color: inherit;
  text-decoration: none;
}

.service-card__title a:hover {
  color: var(--teal);
}

.service-card__count {
  flex-shrink: 0;
  margin-top: 0.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(28, 96, 184, 0.08);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.service-card__subs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-card__sub {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-card__sub:hover {
  border-color: rgba(28, 96, 184, 0.35);
  color: var(--teal);
  background: rgba(28, 96, 184, 0.06);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card__link:hover {
  gap: 0.65rem;
  color: var(--navy);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
}

/* Legacy hooks kept for older markup */
.service-card__thumb,
.service-card__top,
.service-card__icon,
.service-card__list {
  display: none;
}

/* ── Service Details Accordion ── */
.service-details {
  background: var(--off-white);
  padding: 5.5rem 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.accordion__item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.accordion__item.active {
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 96, 184, 0.25);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background 0.2s;
}

.accordion__header:hover {
  background: var(--off-white);
}

.accordion__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.1),
    rgba(0, 33, 75, 0.05)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.accordion__icon svg {
  width: 22px;
  height: 22px;
}

.accordion__title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.accordion__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion__item.active .accordion__chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__content {
  padding: 0 1.5rem 1.5rem 5.5rem;
}

.accordion__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.accordion__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.5rem;
}

.accordion__list li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.accordion__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
}

.accordion__geo {
  font-size: 0.88rem;
  color: var(--navy-mid);
  background: var(--off-white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--teal);
}

.detail-block {
  margin-bottom: 1.25rem;
}

.detail-block h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.detail-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-tags li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-mid);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.mini-faq {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.mini-faq:last-child {
  border-bottom: none;
}

.mini-faq strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.mini-faq p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SEO Intro */
.seo-intro {
  background: var(--off-white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.seo-intro__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.seo-intro__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  max-width: 900px;
}

/* FAQ Section */
.faq-section {
  background: var(--grad-section);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: rgba(28, 96, 184, 0.2);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s;
}

.faq-item__q:hover {
  background: var(--off-white);
}

.faq-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-item__a {
  max-height: 300px;
}

.faq-item__a p {
  padding: 0 1.5rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* SEO Local */
.seo-local {
  background: var(--grad-cta);
  color: var(--text);
  padding: 4rem 0;
}

.seo-local__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.seo-local h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--navy);
}

.seo-local p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.seo-local__list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text);
  font-size: 0.92rem;
}

.seo-local__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.seo-local__list a {
  color: var(--teal);
  font-weight: 600;
}

.seo-local__cta {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 77, 142, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.seo-local__cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.seo-local__cta p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.seo-local__cta .btn {
  margin-bottom: 0.6rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 3.5rem 0 4rem;
  background: var(--grad-section-alt);
}

.cta-banner--pro {
  padding: 3rem 0 4.5rem;
}

.cta-banner__card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  background: var(--grad-cta);
  border: 1px solid rgba(21, 77, 142, 0.1);
  box-shadow: 0 16px 40px rgba(21, 77, 142, 0.08);
}

.cta-banner__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(94, 179, 232, 0.2) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(21, 77, 142, 0.08) 0%,
      transparent 45%
    );
}

.cta-banner__deco::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(21, 77, 142, 0.1);
}

.cta-banner__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3rem);
}

.cta-banner__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  max-width: 28ch;
}

.cta-banner__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

.cta-banner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.cta-banner__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cta-banner__meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--teal);
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: min(100%, 240px);
}

.btn--cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.35rem;
  background: var(--grad-btn);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(28, 96, 184, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--cta-call svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
}

.btn--cta-call__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  font-size: 1.05rem;
}

.btn--cta-call__text small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.btn--cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28, 96, 184, 0.32);
}

.btn--cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(21, 77, 142, 0.28);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn--cta-book svg {
  width: 18px;
  height: 18px;
}

.btn--cta-book:hover {
  background: rgba(21, 77, 142, 0.06);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* Legacy inner (pre-enhance fallback) */
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-banner .btn--white {
  background: var(--grad-btn);
  color: #fff;
}

.cta-banner .btn--outline-white {
  color: var(--navy);
  border-color: rgba(21, 77, 142, 0.28);
}

.cta-banner .btn--outline-white:hover {
  background: rgba(21, 77, 142, 0.06);
  border-color: var(--teal);
}

/* ── Contact ── */
.contact {
  background: var(--grad-section-alt);
  padding-top: 0;
  padding-bottom: 5rem;
}

.contact .container {
  padding-top: 3.5rem;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

/* Form Card */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.form-card__header {
  background: linear-gradient(135deg, #f4f9ff 0%, #e4f0fa 100%);
  padding: 2rem 2rem 1.75rem;
  color: var(--navy);
}

.form-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-card__header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.form-group label span {
  color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 96, 184, 0.12);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Contact Sidebar */
.contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-sidebar-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-100);
}

.contact-sidebar-list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-50);
}

.contact-sidebar-list li:last-child {
  border-bottom: none;
}

.contact-sidebar-list__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(28, 96, 184, 0.1),
    rgba(0, 33, 75, 0.05)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-sidebar-list__icon svg {
  width: 20px;
  height: 20px;
}

.contact-sidebar-list strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-sidebar-list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-sidebar-list a:hover {
  color: var(--teal);
}

.contact-sidebar-list span {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.contact__maps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}

.contact__maps-head {
  margin-bottom: 0.25rem;
}

.contact__maps-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0.35rem 0 0.4rem;
}

.contact__maps-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 40rem;
}

.contact__map-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact__map-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--gray-100);
}

.contact__map-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--sky-soft);
  color: var(--teal);
}

.contact__map-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact__map-card__meta {
  flex: 1;
  min-width: 0;
}

.contact__map-card__meta h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.15rem;
}

.contact__map-card__meta p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.contact__map-card__badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal);
  background: var(--sky-soft);
  border: 1px solid rgba(28, 96, 184, 0.15);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.contact__map-card__badge--evening {
  color: #0a3d7a;
  background: #e8f0fa;
}

.contact__map {
  border-radius: 0;
  overflow: hidden;
  min-height: 260px;
  box-shadow: none;
  border: none;
  flex: 1;
}

.contact__map iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  height: 260px;
}

.contact__map-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.95rem 1.15rem;
  border-top: 1px solid var(--gray-100);
  background: #fafcff;
}

.contact__directions {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 12rem;
}

.contact__map-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-btn);
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.contact__map-card__link svg {
  width: 14px;
  height: 14px;
}

.contact__map-card__link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: #fff;
}

/* ── Footer ── */
.footer {
  position: relative;
  background: var(--grad-footer);
  color: var(--text-muted);
  border-top: 1px solid rgba(94, 179, 232, 0.35);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 12% 20%,
      rgba(94, 179, 232, 0.28) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(61, 138, 212, 0.18) 0%,
      transparent 46%
    );
}

.footer__main {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr) minmax(0, 1.05fr) minmax(
      0,
      1.35fr
    );
  gap: 2rem 1.75rem;
}

.footer__desc {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 300px;
}

.footer__creds {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.footer__creds span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-left: 0.85rem;
  position: relative;
}

.footer__creds span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
}

.footer__heading {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(28, 96, 184, 0.18);
  display: inline-block;
}

.footer__list li {
  margin-bottom: 0.1rem;
}

.footer__list a {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.4rem 0;
  transition: color 0.2s, padding-left 0.2s;
}

.footer__list a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
  min-width: 0;
}

.footer__contact li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact a,
.footer__contact span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer__contact a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: var(--teal);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.footer__social-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(21, 77, 142, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.footer__social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.footer__social-btn--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer__social-btn--ig:hover {
  background: #e4405f;
  border-color: #e4405f;
}

.footer__social-btn--li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.footer__social-btn--yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.footer__social-btn--wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  background: rgba(28, 96, 184, 0.08);
  border-top: 1px solid rgba(28, 96, 184, 0.12);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer__credit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__credit a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.footer__credit a:hover {
  color: var(--navy);
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 0.25rem;
}

/* ── Floating Buttons (top, above Book Appointment) ── */
.float-actions {
  position: fixed;
  top: calc(var(--total-header) + 400px);
  right: 1.25rem;
  bottom: auto;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 280;
}

.float-btn {
  width: 56px;
  height: 56px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

.float-btn--wa {
  background: #25d366;
}
.float-btn--call {
  background: var(--grad-btn);
}
.float-btn--book {
  background: #0a3d7a;
}

.svc-card.visible {
  opacity: 1;
  transform: none;
}

.svc-main .reveal.visible,
.svc-main--single .visible {
  opacity: 1;
  transform: none;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .header__inner {
    gap: 0.75rem;
  }

  .logo__name {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    max-width: 11rem;
    line-height: 1.25;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__visual {
    order: -1;
  }
  .hero__image-wrap {
    max-width: 360px;
  }
  .hero__card--exp {
    left: 0;
  }
  .hero__card--patients {
    right: 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__visual {
    display: flex;
    justify-content: center;
  }
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-services__grid {
    grid-template-columns: 1fr;
  }
  .home-services__track .home-svc-card {
    flex: 0 0 min(300px, 78vw);
    width: min(300px, 78vw);
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why__grid:has(.why__visual) {
    grid-template-columns: 1fr;
  }
  .why__visual {
    max-height: 380px;
    aspect-ratio: 16 / 10;
  }
  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .contact__layout {
    grid-template-columns: 1fr;
  }
  .accordion__content {
    padding-left: 1.5rem;
  }
  .accordion__list {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .svc-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-intro__card {
    grid-template-columns: 1fr;
  }
  .svc-layout {
    grid-template-columns: 1fr;
  }
  .svc-care-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-article__list {
    grid-template-columns: 1fr;
  }
  .svc-toc__list {
    grid-template-columns: 1fr;
  }
  .svc-article__section {
    padding: 1.25rem 1.5rem;
  }
  .svc-card__panels {
    grid-template-columns: 1fr;
  }
  .svc-treatments {
    grid-template-columns: 1fr;
  }
  .svc-related__grid {
    grid-template-columns: 1fr;
  }
  .cta-banner__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
  .cta-banner__actions .btn {
    flex: 1 1 200px;
  }
  .sub-service-card {
    grid-template-columns: 1fr;
  }
  .sub-service-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .sub-service-card__media img {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .topbar {
    font-size: 0.72rem;
    height: auto;
    min-height: var(--topbar-h);
    padding: 0.35rem 0;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
  }

  .topbar__email {
    display: none;
  }
  .topbar__divider {
    display: none;
  }

  .topbar__left span.topbar__item {
    font-size: 0.7rem;
  }

  :root {
    --header-h: 68px;
    --topbar-h: 36px;
  }

  .logo__img {
    height: 42px;
    max-width: min(180px, 52vw);
  }

  .logo__img--footer {
    height: 48px;
  }

  .logo__mark {
    width: 38px;
    height: 38px;
  }

  .logo__name {
    font-size: 0.95rem;
  }

  .logo__title {
    font-size: 0.65rem;
  }

  .page-banner {
    padding: 2.5rem 0 2rem;
  }
  .page-banner__title {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }
  .page-banner__desc {
    font-size: 0.9rem;
  }

  .hero {
    padding: 2rem 0 3rem;
  }
  .hero__title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }
  .hero__subtitle {
    font-size: 0.92rem;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .hero__creds {
    gap: 0.4rem;
  }
  .hero__creds span {
    font-size: 0.68rem;
    padding: 0.35rem 0.6rem;
  }
  .hero__image-wrap {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero__card {
    padding: 0.75rem 1rem;
  }
  .hero__card--exp {
    left: 0.5rem;
    bottom: 1rem;
  }
  .hero__card--patients {
    right: 0.5rem;
    top: 1rem;
  }

  .section {
    padding: 3rem 0;
  }
  .section__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .section-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .section-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .services__filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services__filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 40px;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }
  .stat {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .quals {
    grid-template-columns: 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .home-services__grid {
    grid-template-columns: 1fr;
  }
  .home-services__track .home-svc-card {
    flex: 0 0 min(280px, 85vw);
    width: min(280px, 85vw);
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog-related__grid {
    grid-template-columns: 1fr;
  }
  .home-blog__grid {
    grid-template-columns: 1fr;
  }
  .about__cards {
    grid-template-columns: 1fr;
  }
  .about__grid {
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact__maps {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.15rem;
  }
  .contact__map-card__top {
    flex-wrap: wrap;
  }
  .contact__map-card__badge {
    margin-left: auto;
  }
  .contact__map {
    min-height: 220px;
  }
  .contact__map iframe {
    min-height: 220px;
    height: 220px;
  }
  .cta-banner__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
  }
  .cta-banner__title,
  .cta-banner__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-banner__meta {
    justify-content: center;
  }
  .cta-banner__actions {
    width: 100%;
    min-width: 0;
  }
  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .btn--cta-call__text {
    align-items: center;
  }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .seo-local__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer__desc {
    max-width: 100%;
  }
  .svc-trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .svc-nav-link {
    flex: 1 1 100%;
    min-height: 44px;
  }
  .svc-card {
    padding: 0;
  }
  .svc-card__body {
    padding: 1.25rem;
  }
  .svc-card__hero {
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }
  .svc-hero-full {
    min-height: clamp(320px, 55vh, 480px);
    max-height: 520px;
  }
  .svc-hero-full__wrap {
    padding-bottom: 2rem;
  }
  .svc-hero-full__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .svc-hero-full__icon {
    width: 52px;
    height: 52px;
  }
  .svc-hero-full__title {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }
  .svc-hero-full__desc {
    font-size: 0.9rem;
  }
  .svc-hero-full__actions {
    flex-direction: column;
    width: 100%;
  }
  .svc-hero-full__actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .svc-stats-float {
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
  }
  .svc-stats-float__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.85rem;
  }
  .svc-stat-chip {
    padding: 0.35rem 0.5rem;
  }
  .svc-stat-chip strong {
    font-size: 0.9rem;
  }
  .svc-stat-chip span {
    font-size: 0.68rem;
  }
  .svc-layout--single {
    grid-template-columns: 1fr;
  }
  .svc-benefits-grid {
    grid-template-columns: 1fr;
  }
  .svc-diagnostics-list {
    grid-template-columns: 1fr;
  }
  .svc-care-steps {
    grid-template-columns: 1fr;
  }
  .svc-card__footer--pro {
    margin: 0 -1.25rem -1.25rem;
    padding: 1.25rem;
  }
  .svc-card__footer {
    flex-direction: column;
  }
  .svc-card__footer .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .svc-article__section {
    padding: 1.15rem 1.25rem;
  }
  .svc-toc {
    padding: 1rem 1.15rem;
  }
  .breadcrumb {
    flex-wrap: wrap;
    font-size: 0.78rem;
  }
  .float-actions {
    top: calc(var(--total-header) + 400px);
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: auto;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .btn {
    min-height: 44px;
  }
  .btn--sm {
    min-height: 40px;
    padding: 0.65rem 1.25rem;
  }
  .svc-intro-block {
    flex-direction: column;
    padding: 1.15rem;
    margin-bottom: 1rem;
  }
  .svc-intro-block__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .svc-intro-block__icon svg {
    width: 24px;
    height: 24px;
  }
  .svc-intro-block__lead {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .svc-intro-visual {
    margin-bottom: 1.15rem;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
  }
  .svc-read-meta {
    gap: 0.35rem;
  }
  .svc-read-meta span {
    font-size: 0.7rem;
    padding: 0.3rem 0.55rem;
  }
  .sub-service-card {
    grid-template-columns: 1fr;
  }
  .sub-service-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .sub-service-card__media img {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }
  .sub-service-card__body {
    padding: 1rem 1rem 1.1rem;
  }
  .sub-service-card__title {
    font-size: 0.95rem;
    min-height: 0;
  }
  .sub-service-card__desc {
    font-size: 0.84rem;
    line-height: 1.6;
  }
  .sub-services-grid {
    gap: 1rem;
  }
  .service-card__body {
    padding: 1.15rem 1.2rem 1.25rem;
    gap: 0.75rem;
  }
  .service-card__title {
    font-size: 1.2rem;
  }
  .service-card__desc {
    font-size: 0.88rem;
  }
  .service-card__sub {
    font-size: 0.74rem;
    padding: 0.4rem 0.65rem;
  }
  .service-card__link {
    min-height: 44px;
  }
  .svc-panel--subs {
    padding: 1rem;
  }
  .svc-section-head__title {
    font-size: 1rem;
  }
  .svc-hero-full__badges {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .svc-hero-full__crumb {
    font-size: 0.75rem;
  }
  .spec-card__body h3 {
    font-size: 1.05rem;
  }
  .info-card__body h3 {
    font-size: 1rem;
  }
  .seo-local__grid {
    gap: 1.5rem;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .home-svc-card__body h3 {
    font-size: 1.05rem;
  }
  .home-svc-card__body p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .topbar__hours {
    display: none;
  }

  .logo__name {
    font-size: 0.85rem;
    max-width: 11rem;
    line-height: 1.25;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }
  .hero__creds span {
    font-size: 0.65rem;
  }
  .hero__card {
    display: none;
  }
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 2.75rem 0;
  }
  .svc-trust-bar__grid {
    grid-template-columns: 1fr;
  }
  .svc-stats-float__grid {
    grid-template-columns: 1fr;
  }
  .page-banner {
    padding: 2rem 0 1.75rem;
  }
  .faq-item__q {
    font-size: 0.9rem;
    padding: 1rem 1.15rem;
  }
  .service-card__body {
    padding: 1.2rem 1.25rem 1.35rem;
  }
  .sub-service-card__title {
    font-size: 0.9rem;
  }
  .sub-service-card__desc {
    font-size: 0.82rem;
  }
  .svc-intro-block__lead {
    font-size: 0.9rem;
  }
  .svc-hero-full {
    min-height: 300px;
    max-height: 460px;
  }
  .svc-hero-full__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }
  .blog-detail-hero__title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
  .about__image-frame {
    max-width: 100%;
  }
  .contact__form {
    padding: 1.25rem;
  }
}
/* ═══════════════════════════════════════
   Mobile & Tablet — site-wide responsive
   ═══════════════════════════════════════ */

/* Prevent horizontal scroll on all devices */
html {
  overflow-x: hidden;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* iOS: prevent zoom on form focus */
@media (max-width: 1024px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* ── Tablet & mobile navigation (≤1024px) ── */
@media (max-width: 1024px) {
  :root {
    --header-h: 68px;
    --topbar-h: 36px;
  }

  .topbar {
    font-size: 0.72rem;
    height: auto;
    min-height: var(--topbar-h);
    padding: 0.35rem 0;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
  }

  .topbar__email {
    display: none;
  }
  .topbar__divider {
    display: none;
  }

  .topbar__left span.topbar__item {
    font-size: 0.7rem;
  }

  .header__inner {
    gap: 0.75rem;
  }

  .logo {
    min-width: 0;
    flex: 1;
  }

  .logo__img {
    height: 40px;
    max-width: min(170px, 50vw);
  }

  .logo__mark {
    width: 38px;
    height: 38px;
  }

  .logo__name {
    font-size: 0.95rem;
  }

  .logo__title {
    font-size: 0.65rem;
  }

  /* Layout stacks earlier on tablets */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__visual {
    order: -1;
  }
  .hero__image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__card--exp {
    left: 0;
  }
  .hero__card--patients {
    right: 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__visual {
    display: flex;
    justify-content: center;
  }
  .about__image {
    max-width: 100%;
    margin: 0 auto;
  }
  .about__badge {
    right: 0;
    bottom: -0.5rem;
  }

  .why__grid,
  .why__grid:has(.why__visual) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why__visual {
    max-height: none;
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .seo-local__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact__layout {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .about__cards {
    grid-template-columns: 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .blog__grid,
  .home-blog__grid {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .seo-intro__card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .svc-layout,
  .svc-layout--single {
    grid-template-columns: 1fr;
  }
  .service-details--page .svc-layout {
    grid-template-columns: 240px 1fr;
    gap: 1.25rem;
  }
  .service-details--single .svc-layout--single {
    grid-template-columns: 240px 1fr;
    gap: 1.25rem;
  }
  .svc-sidebar,
  .svc-sidebar--pro {
    position: static;
    top: auto;
    max-height: none;
  }
  .service-details--page .svc-sidebar,
  .service-details--page .svc-sidebar--pro,
  .service-details--single .svc-sidebar,
  .service-details--single .svc-sidebar--pro {
    position: sticky;
    top: calc(var(--total-header) + 1rem);
    max-height: calc(100vh - var(--total-header) - 2.5rem);
  }
  .svc-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
    overflow: visible;
    max-height: none;
  }
  .service-details--page .svc-sidebar__nav,
  .service-details--page .svc-sidebar--pro .svc-sidebar__nav,
  .service-details--single .svc-sidebar--pro .svc-sidebar__nav {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-y: auto;
    max-height: min(280px, calc(100vh - var(--total-header) - 20rem));
  }
  .svc-nav-link {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 140px;
  }
  .service-details--page .svc-nav-link,
  .service-details--single .svc-nav-link {
    flex: none;
    min-width: 0;
  }
  .cta-banner__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .page-banner {
    padding: 2.5rem 0 2rem;
  }
  .page-banner__title {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }
  .page-banner__desc {
    font-size: 0.9rem;
  }

  .hero {
    padding: 2rem 0 3rem;
  }
  .hero__title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }
  .hero__subtitle {
    font-size: 0.92rem;
    max-width: 100%;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .hero__creds {
    gap: 0.4rem;
  }
  .hero__creds span {
    font-size: 0.68rem;
    padding: 0.35rem 0.6rem;
  }
  .hero__image-wrap {
    max-width: 100%;
  }
  .hero__card {
    padding: 0.75rem 1rem;
  }
  .hero__card--exp {
    left: 0.5rem;
    bottom: 1rem;
  }
  .hero__card--patients {
    right: 0.5rem;
    top: 1rem;
  }

  .section {
    padding: 3rem 0;
  }
  .section__header {
    margin-bottom: 2.5rem;
  }
  .section__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .section__desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .section-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .section-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }

  .stat {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .quals {
    grid-template-columns: 1fr;
  }

  .services__filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .services__filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 40px;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
  }

  .home-services__track .home-svc-card {
    flex: 0 0 min(260px, 88vw);
    width: min(260px, 88vw);
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer__desc {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .contact__map {
    min-height: 220px;
  }
  .contact__map iframe {
    width: 100%;
    min-height: 220px;
  }
  .form-card {
    padding: 1.25rem;
  }

  .cta-banner__grid {
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .cta-banner__title,
  .cta-banner__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-banner__meta {
    justify-content: center;
  }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .breadcrumb {
    flex-wrap: wrap;
    font-size: 0.78rem;
  }

  .float-actions {
    top: calc(var(--total-header) + 400px);
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: auto;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
  .btn {
    min-height: 44px;
    white-space: normal;
  }

  .svc-trust-bar__grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-stats-float__grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-hero-full__actions {
    flex-direction: column;
    width: 100%;
  }
  .svc-hero-full__actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .svc-benefits-grid,
  .svc-care-steps,
  .svc-diagnostics-list {
    grid-template-columns: 1fr;
  }
  .sub-service-card {
    grid-template-columns: 1fr;
  }
  .sub-service-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .sub-service-card__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
  .sub-service-card__title {
    font-size: 0.95rem;
    min-height: 0;
  }
  .sub-service-card__desc {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .service-details--page .svc-layout,
  .service-details--single .svc-layout--single {
    grid-template-columns: 1fr;
  }

  .service-details--page .svc-sidebar,
  .service-details--page .svc-sidebar--pro,
  .service-details--single .svc-sidebar,
  .service-details--single .svc-sidebar--pro {
    position: static;
    top: auto;
    max-height: none;
  }

  .service-details--page .svc-sidebar__nav,
  .service-details--page .svc-sidebar--pro .svc-sidebar__nav,
  .service-details--single .svc-sidebar--pro .svc-sidebar__nav {
    max-height: none;
  }

  .svc-intro-block {
    flex-direction: column;
    padding: 1.15rem;
    margin: 0 0 1rem;
  }

  .svc-intro-visual {
    aspect-ratio: 16 / 9;
    margin-bottom: 1.15rem;
  }

  .svc-intro-block__lead {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .service-card__sub {
    padding: 0.4rem 0.65rem;
    font-size: 0.74rem;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-detail-sidebar {
    grid-template-columns: 1fr;
  }
  .blog-detail-hero {
    min-height: auto;
    padding: 1.75rem 0 2rem;
  }

  .blog-detail-hero__title {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .blog-detail-hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .faq-item__q {
    font-size: 0.9rem;
    padding: 1rem 1.15rem;
  }

  .info-card__body h3 {
    font-size: 1rem;
  }
  .about__role {
    font-size: 0.9rem;
  }
  .about__text {
    font-size: 0.92rem;
  }

  .why__steps {
    padding: 1.5rem;
  }
  .why__steps h3 {
    font-size: 1.25rem;
  }
  .step {
    gap: 1rem;
  }
  .step__num {
    font-size: 1.5rem;
  }

  .seo-local {
    padding: 3rem 0;
  }
  .seo-local__cta {
    padding: 1.5rem;
  }

  .accordion__list {
    grid-template-columns: 1fr;
  }
  .accordion__content {
    padding-left: 1rem;
  }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .topbar__hours {
    display: none;
  }

  .logo__name {
    font-size: 0.85rem;
    max-width: 11rem;
    line-height: 1.25;
  }

  .hero {
    padding: 1.75rem 0 2.5rem;
  }
  .hero__creds span {
    font-size: 0.65rem;
  }
  .hero__card {
    display: none;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 2.5rem 0;
  }
  .page-banner {
    padding: 2rem 0 1.75rem;
  }

  .svc-trust-bar__grid,
  .svc-stats-float__grid {
    grid-template-columns: 1fr;
  }

  .svc-hero-full {
    min-height: 300px;
    max-height: 460px;
  }
  .svc-hero-full__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .about__image-frame {
    max-width: 100%;
  }
  .about__badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    width: fit-content;
  }
}

/* ── Blog pages ── */
@media (max-width: 768px) {
  .blog-detail-hero {
    min-height: auto;
    padding: 1.75rem 0 2rem;
  }

  .blog-detail-hero__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    line-height: 1.25;
  }

  .blog-detail-hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-detail-sidebar {
    grid-template-columns: 1fr;
    position: static;
  }

  .blog-detail-content {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .blog-detail-content h2 {
    font-size: 1.2rem;
  }

  .blog-detail-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .blog-detail-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .blog-detail-hero__title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
}

/* ═══════════════════════════════════════
   Mobile menu — dropdown overlay (final)
   ═══════════════════════════════════════ */

/* Desktop nav layout */
@media (min-width: 1025px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .logo {
    flex-shrink: 0;
  }

  .nav-toggle {
    display: none;
  }

  .header__inner > .nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    transform: none;
    z-index: auto;
  }

  .header__inner > .nav .nav__panel {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }

  .nav__cta {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    min-height: auto;
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .header__actions {
    display: none;
  }

  .nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .header,
  .header__inner,
  .site-header-shell {
    overflow: visible;
  }

  .header__inner {
    position: relative;
    z-index: 302;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
  }

  .header__call {
    display: inline-flex;
  }

  .header__book {
    display: inline-flex;
  }

  .header__book {
    width: auto;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 999px;
    justify-content: center;
    gap: 0.35rem;
  }

  .header__book span {
    display: inline;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 1.5px solid var(--navy);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    position: relative;
    z-index: 303;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle--open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--total-header);
    z-index: 1;
    background: rgba(0, 33, 75, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-backdrop--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header {
    position: relative;
    z-index: 3;
  }

  .nav {
    display: block;
    position: fixed;
    top: var(--total-header);
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    overflow: visible;
    height: auto;
    max-height: none;
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__panel {
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 12px 40px rgba(0, 33, 75, 0.14);
    padding: 0;
    animation: navDropIn 0.28s ease;
  }

  @keyframes navDropIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav__links {
    display: flex;
    flex-direction: column;
  }

  .nav__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.1rem 1.5rem;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-100);
    background: #fff;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(28, 96, 184, 0.2);
    touch-action: manipulation;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link:hover,
  .nav__link.active {
    color: var(--teal);
    background: rgba(28, 96, 184, 0.04);
  }

  .nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 3rem);
    margin: 1.25rem 1.5rem 1.5rem;
    min-height: 52px;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(28, 96, 184, 0.3);
    cursor: pointer;
    touch-action: manipulation;
    position: relative;
    z-index: 1;
  }
}
