/* =============================================
   Dr. Ramesh Vasa – Professional Medical UI
   ============================================= */

:root {
  --primary: #18A096;
  --primary-dark: #128078;
  --primary-light: #2BBBAD;
  --secondary: #3F448C;
  --accent: #F7941D;
  --accent-dark: #E07F0C;
  --accent-light: #FFB347;
  --logo-pink: #18A096;
  --logo-pink-light: #2BBBAD;
  --logo-grey: #4A4A4A;
  --gold: #F7941D;
  --dark: #1A1F3A;
  --dark-soft: #2A3050;
  --light: #F0FAF9;
  --light-alt: #E6F5F3;
  --white: #FFFFFF;
  --text: #2D3348;
  --muted: #5A6278;
  --border: rgba(24, 160, 150, 0.12);
  --radius-card: 20px;
  --radius-btn: 10px;
  --radius-input: 10px;
  --shadow-sm: 0 2px 8px rgba(26, 31, 58, 0.04);
  --shadow: 0 4px 24px rgba(26, 31, 58, 0.07);
  --shadow-md: 0 12px 40px rgba(26, 31, 58, 0.1);
  --shadow-hover: 0 20px 56px rgba(26, 31, 58, 0.14);
  --shadow-accent: 0 8px 28px rgba(247, 148, 29, 0.28);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 72px;
  --space-7: 104px;
  --font-display: "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
  --topbar-height: 38px;
  --header-height: 98px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--secondary); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ---- Premium Utilities ---- */
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #A8E6E1 45%, #F7941D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(63, 68, 140, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(24, 160, 150, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* ---- Preloader ---- */
body.is-loading { overflow: hidden; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--light) 0%, var(--white) 45%, #F0FAF9 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}
.preloader__icon-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__favicon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: preloader-pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(63, 68, 140, 0.2));
}
.preloader__ring {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(63, 68, 140, 0.12);
  border-top-color: var(--accent);
  border-right-color: var(--primary);
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.92; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__favicon,
  .preloader__ring { animation: none; }
}

/* ---- Chips ---- */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(24, 160, 150, 0.08) 0%, rgba(63, 68, 140, 0.05) 100%);
  border: 1px solid rgba(24, 160, 150, 0.15);
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 160, 150, 0.12);
}
.chip--accent {
  color: var(--accent);
  background: rgba(63, 68, 140, 0.08);
  border-color: rgba(63, 68, 140, 0.2);
}
.chip--outline {
  color: var(--muted);
  background: var(--white);
  border-color: var(--border);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(24, 160, 150, 0.4);
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn--primary:hover::after {
  left: 120%;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0D5C56 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 160, 150, 0.4);
}
.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #C96A0A 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247, 148, 29, 0.4);
}
.btn--outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }
.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn--white:hover {
  background: var(--light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Top Bar ---- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #128078 0%, #18A096 55%, #3F448C 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  z-index: 1002;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  width: 100%;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar__item svg { flex-shrink: 0; opacity: 0.85; }
.topbar__item a {
  color: rgba(255, 255, 255, 0.95);
  transition: color var(--transition);
}
.topbar__item a:hover { color: var(--white); }
.topbar__phone {
  font-weight: 700;
  color: var(--white) !important;
}
.topbar__phone:hover { opacity: 0.9; }

@media (max-width: 767px) {
  .topbar__item--hide-mobile { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__right { display: none; }
}

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 160, 150, 0.1);
  box-shadow: 0 4px 24px rgba(26, 31, 58, 0.06);
  transition: box-shadow var(--transition), height var(--transition);
  overflow: visible;
}
.header.scrolled {
  box-shadow: 0 8px 28px rgba(26, 31, 58, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: var(--header-height);
  overflow: visible;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1003;
  background: transparent;
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.9; }
.nav:has(.nav__menu.open) .nav__logo {
  opacity: 0;
  pointer-events: none;
}

/* ---- Site Logo ---- */
.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.site-logo--header {
  height: 90px;
  max-width: 780px;
  background: transparent !important;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transition: height var(--transition);
}
.header.scrolled .site-logo--header {
  height: 178px;
}
.site-logo--footer {
  height: 162px;
  max-width: 820px;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: var(--space-2);
  filter: none;
  transition: transform var(--transition), opacity var(--transition);
}
.footer__logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer__logo-link:hover .site-logo--footer {
  transform: translateY(-2px);
  opacity: 0.92;
}

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 31, 58, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__backdrop.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1003;
  transition: background var(--transition), border-color var(--transition);
}
.nav__toggle:hover {
  background: rgba(24, 160, 150, 0.1);
  border-color: rgba(24, 160, 150, 0.25);
}
.nav__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.nav__toggle[aria-expanded="true"] {
  background: rgba(24, 160, 150, 0.12);
  border-color: rgba(24, 160, 150, 0.3);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: var(--primary); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  display: flex;
  list-style: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 340px);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4px;
  padding: calc(var(--topbar-height) + 12px) var(--space-3) var(--space-4);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  box-shadow: -12px 0 40px rgba(26, 31, 58, 0.12);
  overflow-y: auto;
  visibility: hidden;
}
.nav__menu-brand {
  display: block;
  margin: 0 0 var(--space-3);
  padding: 4px 0;
  max-width: calc(100% - 56px);
}
.nav__menu-brand img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav__menu.open {
  visibility: visible;
  transform: translateX(0);
}
.nav__menu > li { width: 100%; }
.nav__link {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover {
  color: var(--primary);
  background: rgba(24, 160, 150, 0.08);
}
.nav__link.active {
  color: var(--primary);
  background: rgba(24, 160, 150, 0.1);
}
.nav__link::after { display: none; }
.nav__phone-item,
.nav__cta-item { margin-top: var(--space-2); }
.nav__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(63, 68, 140, 0.06);
  border: 1px solid rgba(63, 68, 140, 0.12);
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.nav__phone:hover {
  background: rgba(63, 68, 140, 0.12);
  color: var(--secondary);
}
.nav__phone svg { flex-shrink: 0; }
.nav__cta {
  width: 100%;
  justify-content: center;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(247, 148, 29, 0.3);
}

@media (min-width: 992px) {
  .nav__toggle,
  .nav__backdrop { display: none !important; }
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    padding: 0;
    transform: none;
    box-shadow: none;
    overflow: visible;
    background: transparent;
    visibility: visible;
  }
  .nav__menu::before {
    display: none;
  }
  .nav__menu-brand {
    display: none;
  }
  .nav__menu > li { width: auto; }
  .nav__link {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    padding: 10px 14px;
    border-radius: 8px;
  }
  .nav__link:hover {
    color: var(--primary);
    background: rgba(24, 160, 150, 0.08);
  }
  .nav__link.active {
    color: var(--primary);
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--primary);
    border-radius: 0;
  }
  .nav__phone-item,
  .nav__cta-item {
    margin-top: 0;
    margin-left: 6px;
  }
  .nav__phone {
    width: auto;
    padding: 9px 14px;
    font-size: 0.8125rem;
    border-radius: 100px;
  }
  .nav__cta {
    width: auto;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 11px 22px;
    border-radius: 100px !important;
  }

  /* Services dropdown (desktop) */
  .nav__item--dropdown {
    position: relative;
  }
  .nav__dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    width: auto;
  }
  .nav__chevron {
    transition: transform 0.2s ease;
  }
  .nav__item--dropdown:hover > .nav__dropdown-trigger,
  .nav__item--dropdown:focus-within > .nav__dropdown-trigger,
  .nav__item--dropdown.is-open > .nav__dropdown-trigger {
    color: var(--primary);
  }
  .nav__item--dropdown:hover > .nav__dropdown-trigger .nav__chevron,
  .nav__item--dropdown:focus-within > .nav__dropdown-trigger .nav__chevron,
  .nav__item--dropdown.is-open > .nav__dropdown-trigger .nav__chevron {
    transform: rotate(180deg);
  }
  .nav__dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(340px, calc(100vw - 32px));
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1200;
  }
  .nav__item--dropdown:hover > .nav__dropdown,
  .nav__item--dropdown:focus-within > .nav__dropdown,
  .nav__item--dropdown.is-open > .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav__dropdown-panel {
    background: var(--white);
    border: 1px solid rgba(24, 160, 150, 0.16);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(26, 31, 58, 0.16);
    padding: 10px;
    max-height: min(70vh, 560px);
    overflow-y: auto;
  }
  .nav__dropdown-simple {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
  }
  .nav__dropdown-simple > li {
    border: 1px solid rgba(24, 160, 150, 0.12);
    border-radius: 10px;
    background: #F7FCFB;
    overflow: hidden;
  }
  .nav__dropdown-simple-link {
    display: block;
    padding: 12px 14px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    text-decoration: none;
  }
  .nav__dropdown-simple-link:hover {
    color: var(--primary);
    background: rgba(24, 160, 150, 0.08);
  }
  .nav__dropdown-sub {
    list-style: none;
    margin: 0;
    padding: 4px 8px 10px;
    border-top: 1px solid rgba(24, 160, 150, 0.1);
    background: var(--white);
    display: grid;
    gap: 2px;
  }
  .nav__dropdown-sub a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
  }
  .nav__dropdown-sub a:hover {
    background: rgba(24, 160, 150, 0.1);
    color: var(--primary);
  }
  .nav__dropdown-more {
    color: var(--accent) !important;
    font-weight: 700 !important;
  }
  .nav__dd-field {
    border: 1px solid rgba(24, 160, 150, 0.12);
    border-radius: 10px;
    background: #F7FCFB;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .nav__dd-field:last-of-type {
    margin-bottom: 0;
  }
  .nav__dd-field-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    cursor: pointer;
    text-align: left;
  }
  .nav__dd-field-btn:hover {
    color: var(--primary);
    background: rgba(24, 160, 150, 0.08);
  }
  .nav__dd-field-btn .nav__chevron {
    transition: transform 0.2s ease;
  }
  .nav__dd-field.is-open .nav__dd-field-btn .nav__chevron {
    transform: rotate(180deg);
  }
  .nav__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0 8px 10px;
    border-top: 1px solid rgba(24, 160, 150, 0.1);
    background: var(--white);
    display: none;
    gap: 2px;
  }
  .nav__dd-field.is-open .nav__dropdown-list {
    display: grid;
  }
  .nav__dropdown-list a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    text-decoration: none;
  }
  .nav__dropdown-list a:hover {
    background: rgba(24, 160, 150, 0.1);
    color: var(--primary);
  }
  .nav__dropdown-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    background: rgba(24, 160, 150, 0.08);
  }
  .nav__dropdown-all:hover {
    background: rgba(24, 160, 150, 0.14);
  }
}

/* Services dropdown (mobile) */
@media (max-width: 991px) {
  .nav__item--dropdown {
    width: 100%;
  }
  .nav__dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav__chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .nav__item--dropdown.is-open > .nav__dropdown-trigger .nav__chevron {
    transform: rotate(180deg);
  }
  .nav__dropdown {
    display: none;
    width: 100%;
    padding: 0 0 8px;
  }
  .nav__item--dropdown.is-open > .nav__dropdown {
    display: block;
  }
  .nav__dropdown-panel {
    background: rgba(24, 160, 150, 0.05);
    border: 1px solid rgba(24, 160, 150, 0.12);
    border-radius: 12px;
    padding: 8px;
    max-height: min(58vh, 480px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__dropdown-simple {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
  }
  .nav__dropdown-simple > li {
    border: 1px solid rgba(24, 160, 150, 0.12);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
  }
  .nav__dropdown-simple-link {
    display: block;
    padding: 12px 14px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary);
    text-decoration: none;
  }
  .nav__dropdown-simple-link:hover {
    color: var(--primary);
    background: rgba(24, 160, 150, 0.08);
  }
  .nav__dropdown-sub {
    list-style: none;
    margin: 0;
    padding: 4px 8px 10px;
    border-top: 1px solid rgba(24, 160, 150, 0.1);
    display: grid;
    gap: 2px;
  }
  .nav__dropdown-sub a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    text-decoration: none;
  }
  .nav__dropdown-sub a:hover {
    background: rgba(24, 160, 150, 0.1);
    color: var(--primary);
  }
  .nav__dropdown-more {
    color: var(--accent) !important;
    font-weight: 700 !important;
  }
  .nav__dd-field {
    border: 1px solid rgba(24, 160, 150, 0.12);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    margin-bottom: 8px;
  }
  .nav__dd-field:last-of-type {
    margin-bottom: 0;
  }
  .nav__dd-field-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary);
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .nav__dd-field.is-open .nav__dd-field-btn {
    color: var(--primary);
    background: rgba(24, 160, 150, 0.08);
  }
  .nav__dd-field-btn .nav__chevron {
    transition: transform 0.2s ease;
  }
  .nav__dd-field.is-open .nav__dd-field-btn .nav__chevron {
    transform: rotate(180deg);
  }
  .nav__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0 8px 10px;
    border-top: 1px solid rgba(24, 160, 150, 0.1);
    display: none;
    gap: 2px;
  }
  .nav__dd-field.is-open .nav__dropdown-list {
    display: grid;
  }
  .nav__dropdown-list a {
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    text-decoration: none;
  }
  .nav__dropdown-list a:active,
  .nav__dropdown-list a:hover {
    background: rgba(24, 160, 150, 0.1);
    color: var(--primary);
  }
  .nav__dropdown-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    background: rgba(24, 160, 150, 0.1);
  }
}

.sd-procedure {
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 160, 150, 0.12);
  scroll-margin-top: calc(var(--topbar-height) + var(--header-height) + 16px);
}
.sd-procedure:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sd-procedure__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.sd-procedure p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D2A28 0%, #128078 35%, #18A096 65%, #3F448C 100%);
  color: var(--white);
  padding: calc(var(--topbar-height) + var(--header-height) + var(--space-5)) 0 var(--space-7);
  overflow: hidden;
}
.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: floatOrb 12s ease-in-out infinite;
}
.hero__orb--1 {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 5%;
  background: rgba(43, 187, 173, 0.45);
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 240px;
  height: 240px;
  bottom: 15%;
  left: -5%;
  background: rgba(24, 160, 150, 0.4);
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 40%;
  background: rgba(247, 148, 29, 0.35);
  animation-delay: -8s;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 95% 10%, rgba(43, 187, 173, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(24, 160, 150, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, rgba(13, 42, 40, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(26, 31, 58, 0.25), transparent);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.hero__content { max-width: 600px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: var(--space-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--logo-pink-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--logo-pink);
  box-shadow: 0 0 10px var(--logo-pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
.hero-heading {
  font-size: clamp(2.375rem, 5.5vw, 3.75rem);
  color: var(--white);
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}
.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-bottom: var(--space-4);
}
.hero__highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  min-width: 90px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition);
}
.hero__highlight:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.hero__highlight strong {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__highlight span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}
.hero__subtitle {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-3);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.hero__subtitle-name {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hero__subtitle-creds {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.hero__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: var(--space-4);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.hero__address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-size: 0.875rem;
  opacity: 0.8;
}
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: var(--space-4) auto 0;
  padding-bottom: var(--space-5);
  gap: var(--space-3);
}
.hero__image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero__image-frame--premium::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 2;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(24,160,150,0.6), rgba(43, 187, 173,0.5), rgba(255,255,255,0.3));
  background-size: 300% 300%;
  animation: borderGlow 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero__visual:hover .hero__image-frame {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 40px 96px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(24, 160, 150, 0.15);
}
.hero__service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__visual:hover .hero__service-img {
  transform: scale(1.04);
}

.hero__image-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 31, 58, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
.hero__image-glow {
  position: absolute;
  inset: -30%;
  z-index: -1;
  background: radial-gradient(circle at 50% 40%, rgba(24, 160, 150, 0.35) 0%, transparent 65%);
  pointer-events: none;
}
.hero__scroll {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2.5s ease-in-out infinite;
  transition: opacity var(--transition);
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll-text {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    align-items: center;
  }
  .hero__visual {
    margin: 0;
    max-width: none;
    padding-bottom: var(--space-6);
    gap: 0;
  }
  .hero__image-frame {
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-6);
  }
  .hero__image-frame { max-width: 520px; }
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -1px;
}
.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--logo-pink), var(--primary));
  background-size: 200% 100%;
  animation: shimmerLine 4s linear infinite;
}
@keyframes shimmerLine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--space-3) var(--space-2);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.trust-strip__item:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-1px);
}
.trust-strip__item svg {
  flex-shrink: 0;
  color: var(--accent);
  padding: 6px;
  background: linear-gradient(135deg, rgba(63, 68, 140, 0.1) 0%, rgba(24, 160, 150, 0.08) 100%);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  transition: transform var(--transition);
}
.trust-strip__item:hover svg {
  transform: scale(1.08);
}
.trust-strip__item:nth-child(2n) { border-right: none; }
.trust-strip__item:nth-last-child(-n+2) { border-bottom: none; }

@media (min-width: 768px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .trust-strip__item { border-bottom: none; }
  .trust-strip__item:nth-child(2n) { border-right: 1px solid var(--border); }
  .trust-strip__item:last-child { border-right: none; }
  .trust-strip__item { font-size: 0.875rem; padding: var(--space-3); }
}

/* ---- Sections ---- */
.section { padding: var(--space-7) 0; }
.section__header {
  text-align: center;
  margin-bottom: var(--space-6);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.section__eyebrow::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section__title {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  margin-bottom: var(--space-2);
  letter-spacing: -0.025em;
  position: relative;
}
.section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: var(--space-2) auto 0;
}
.about__content .section__title::after { margin-left: 0; }
.about__content .section__eyebrow::before { display: none; }
.section__title--center { text-align: center; }
.section__subtitle {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-top: var(--space-2);
}

/* ---- About ---- */
.about {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  position: relative;
}
.about__grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.about__image-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--light) 0%, var(--white) 100%);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ---- Doctor Profile Card ---- */
.doctor-card {
  max-width: 380px;
  margin: 0 auto;
  transition: transform var(--transition);
}
.doctor-card:hover {
  transform: translateY(-6px);
}
.doctor-card__frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.8) inset;
  background: var(--white);
  border: 1px solid var(--border);
}
.doctor-card__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--primary), var(--accent), var(--gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.doctor-card__photo {
  aspect-ratio: 5/6;
  background: linear-gradient(180deg, var(--light-alt) 0%, #d4e8f7 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.doctor-card__badge {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(24, 160, 150, 0.4);
  z-index: 3;
}
.doctor-card__info {
  padding: var(--space-3) var(--space-4) var(--space-4);
  text-align: center;
  background: var(--white);
}
.doctor-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.doctor-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.doctor-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doctor-card__meta li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}
.doctor-card__meta svg { color: var(--primary); flex-shrink: 0; }
.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.about__content .section__title { text-align: left; margin-bottom: var(--space-2); }
.about__content .section__eyebrow { display: block; text-align: left; }
.about__content p {
  margin-bottom: var(--space-2);
  color: var(--text);
  font-size: 1.0125rem;
}
.about__highlights {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: var(--space-3) 0;
  padding: 0;
}
.about__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.14);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  box-shadow: 0 4px 14px rgba(26, 31, 58, 0.04);
}
.about__highlights li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
}
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-3);
  padding: 14px 22px;
  background: var(--white);
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.about__badge svg { color: var(--accent); }

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-7);
  }
  .about__image-placeholder { margin: 0; }
}

/* ---- Stats ---- */
.stats {
  position: relative;
  background: var(--dark);
  padding: var(--space-6) 0;
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(43, 187, 173, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(63, 68, 140, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.stats__item {
  text-align: center;
  padding: var(--space-4) var(--space-2);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}
.stats__item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  border-color: rgba(24, 160, 150, 0.25);
}
.stats__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(63, 68, 140, 0.2) 0%, rgba(24, 160, 150, 0.2) 100%);
  border-radius: 14px;
  color: var(--accent-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stats__icon svg { width: 22px; height: 22px; }
.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stats__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
}

/* ---- Why Choose ---- */
.why { background: var(--white); }
.why__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.why-card {
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 160, 150, 0.18);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(24, 160, 150, 0.08) 0%, rgba(63, 68, 140, 0.08) 100%);
  border-radius: 14px;
  color: var(--primary);
  margin-bottom: var(--space-3);
  border: 1px solid var(--border);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Treatments ---- */
.treatments {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.treatments__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.treatment-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 0 0 var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
a.treatment-card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.treatment-card__more {
  display: inline-block;
  margin-top: 12px;
  padding: 0 var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.treatment-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(63, 68, 140, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: transform var(--transition);
}
.treatment-card:hover::after {
  transform: scale(1.2);
}
.treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px 0 0 4px;
  transition: height var(--transition);
  z-index: 2;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(24, 160, 150, 0.2);
}
.treatment-card:hover::before { height: 100%; }
.treatment-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}
.treatment-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.treatment-card:hover .treatment-card__img {
  transform: scale(1.04);
}
.treatment-card__title {
  font-family: var(--font-body);
  font-size: 1.0125rem;
  font-weight: 600;
  margin: var(--space-3) var(--space-4) 8px;
  color: var(--dark);
  line-height: 1.35;
}
.treatment-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 var(--space-4);
}

@media (min-width: 768px) {
  .treatments__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .treatments__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Procedures ---- */
.procedures { background: var(--white); }
.procedures__list {
  display: grid;
  gap: var(--space-3);
  max-width: 900px;
  margin: 0 auto;
}
/* Procedure cards */
.procedure-card {
  display: flex;
  gap: var(--space-4);
  background: linear-gradient(160deg, var(--white) 0%, #fafcfe 100%);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.procedure-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
/* Procedure cards – enhanced hover */
.procedure-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(6px) translateY(-4px);
}
.procedure-card__badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 700;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(24, 160, 150, 0.35);
  margin-left: 8px;
}
.procedure-card__title {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.procedure-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Appointment ---- */
.appointment {
  background: linear-gradient(180deg, var(--light-alt) 0%, var(--light) 55%, var(--white) 100%);
}
.appointment__grid {
  display: grid;
  gap: var(--space-4);
  align-items: stretch;
}
.appointment__info {
  display: flex;
  min-height: 0;
}
.appointment__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.appointment__card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.appointment__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 var(--space-3);
  flex: 1;
}
.appointment__details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: 12px;
  border: 1px solid rgba(24, 160, 150, 0.1);
  transition: border-color var(--transition), background var(--transition);
}
.appointment__details li:hover {
  background: #F4FBFA;
  border-color: rgba(24, 160, 150, 0.22);
}
.appointment__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(24, 160, 150, 0.12);
  border-radius: 10px;
}
.appointment__icon svg {
  display: block;
}
.appointment__detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}
.appointment__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.appointment__details a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.appointment__details a:hover {
  color: var(--accent);
}
.appointment__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: var(--space-2);
}
.appointment__btn {
  width: 100%;
  justify-content: center;
}
.appointment__disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-style: normal;
}
.appointment__map {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-height: 420px;
}
.appointment__map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #F7FCFB 0%, var(--white) 100%);
}
.appointment__map-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.appointment__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
.appointment__map-link:hover {
  color: var(--accent);
}
.appointment__map-frame {
  flex: 1;
  min-height: 320px;
  position: relative;
}
.appointment__map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 640px) {
  .appointment__actions {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 768px) {
  .appointment__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: var(--space-4);
  }
  .appointment__map {
    min-height: 100%;
  }
  .appointment__map-frame {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .appointment__map {
    min-height: 380px;
  }
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background:
    linear-gradient(118deg, #0E6B64 0%, var(--primary-dark) 28%, var(--primary) 62%, #2BBBAD 100%);
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 90% at 100% 0%, rgba(255, 255, 255, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 70% at 0% 100%, rgba(15, 70, 66, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  pointer-events: none;
  animation: ctaGridDrift 28s linear infinite;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.cta-banner__text {
  max-width: 34rem;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}
.cta-banner__desc {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.cta-banner__actions .btn {
  min-height: 52px;
  padding-inline: 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  box-shadow: none;
}
.cta-banner__actions .btn--white {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(8, 48, 45, 0.22);
}
.cta-banner__actions .btn--white:hover {
  background: #F7FFFE;
  color: #0E5C56;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 34px rgba(8, 48, 45, 0.28);
}
.cta-banner__actions .btn--ghost {
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-banner__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}
.cta-banner__actions a[href^="tel:"]::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.4 21 3 13.6 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.4 21 3 13.6 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes ctaGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 28px 28px, 28px 28px; }
}

@media (min-width: 768px) {
  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: var(--space-5);
  }
  .cta-banner__text {
    flex: 1 1 auto;
    padding-right: var(--space-3);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .cta-banner__actions {
    flex-shrink: 0;
    justify-content: flex-end;
    padding-left: var(--space-2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner::after { animation: none; }
}

/* ---- Contact Form ---- */
.contact {
  position: relative;
  overflow: hidden;
  background-color: #eef8f7;
  background-image:
    radial-gradient(ellipse 80% 55% at 8% 0%, rgba(24, 160, 150, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(247, 148, 29, 0.07), transparent 50%),
    linear-gradient(180deg, #f5fbfa 0%, #eef8f7 48%, #f7fbfb 100%);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 160, 150, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 160, 150, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  opacity: 0.55;
}
.contact > .container {
  position: relative;
  z-index: 1;
}
.contact .section__header {
  margin-bottom: var(--space-5);
}
.contact__grid {
  display: grid;
  gap: var(--space-4);
  align-items: stretch;
}
.contact__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow:
    0 4px 16px rgba(26, 31, 58, 0.05),
    0 18px 48px rgba(24, 160, 150, 0.12);
  border: 1px solid rgba(24, 160, 150, 0.14);
}
.contact__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.contact__visual:hover .contact__visual-img {
  transform: scale(1.05);
}
.contact__visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(8, 32, 38, 0.12) 0%, rgba(8, 32, 38, 0.4) 42%, rgba(8, 28, 34, 0.9) 100%);
  color: var(--white);
  z-index: 1;
}
.contact__visual-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1f3a;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 999px;
}
.contact__visual-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
}
.contact__visual-text {
  margin: 0 0 var(--space-3);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}
.contact__visual-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact__visual-points li {
  padding: 7px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.contact-form--card {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow:
    0 4px 18px rgba(26, 31, 58, 0.04),
    0 20px 52px rgba(26, 31, 58, 0.08);
  border: 1px solid rgba(24, 160, 150, 0.12);
  position: relative;
  overflow: hidden;
  height: 100%;
  align-content: start;
}
.contact-form--card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--logo-pink));
}
.contact .form-group input,
.contact .form-group textarea {
  background: #f6faf9;
  border-color: #dce8e6;
  border-radius: 12px;
}
.contact .form-group input:hover,
.contact .form-group textarea:hover {
  background: var(--white);
  border-color: #c5d7d4;
}
.contact .form-group input:focus,
.contact .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(24, 160, 150, 0.12);
}
.contact .form-disclaimer {
  margin-top: 4px;
}
.contact .btn--accent {
  min-height: 52px;
  font-size: 1.02rem;
}
@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
    gap: var(--space-5);
  }
  .contact__visual {
    min-height: 100%;
  }
}
@media (max-width: 899px) {
  .contact__visual {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact__visual-img,
  .contact__visual:hover .contact__visual-img {
    transform: none;
    transition: none;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.form-group label span { color: #c62828; }
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid #dde3e8;
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fafbfc;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: #b0bec5;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(24, 160, 150, 0.1);
  outline: none;
}
.form-group input.error,
.form-group textarea.error {
  border-color: #c62828;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  font-size: 0.8125rem;
  color: #c62828;
  min-height: 1.2em;
}
.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-card);
  color: #2e7d32;
  font-weight: 600;
}
.form-success[hidden] { display: none; }
.form-success svg { flex-shrink: 0; color: #2e7d32; }

@media (min-width: 768px) {
  .contact-form { grid-template-columns: 1fr 1fr; }
  .form-group--full { grid-column: 1 / -1; }
}

/* ---- FAQ ---- */
.faq {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  align-items: start;
}
@media (min-width: 900px) {
  .faq__list {
    max-width: 1120px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    column-gap: var(--space-3);
    row-gap: var(--space-2);
  }
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  height: auto;
}
.faq__item.open {
  box-shadow: var(--shadow);
  border-color: rgba(24, 160, 150, 0.2);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0125rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  transition: color var(--transition), background var(--transition);
}
.faq__question:hover { color: var(--primary); background: var(--light); }
.faq__item.open .faq__question {
  color: var(--primary);
  background: linear-gradient(90deg, rgba(24, 160, 150, 0.05) 0%, transparent 100%);
}
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 8px;
  transition: transform var(--transition), background var(--transition);
  color: var(--muted);
}
.faq__item.open .faq__icon {
  transform: rotate(180deg);
  background: rgba(24, 160, 150, 0.1);
  color: var(--primary);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s ease;
  padding: 0 var(--space-3);
}
.faq__item.open .faq__answer {
  max-height: 480px;
  padding: 0 var(--space-3) var(--space-3);
}
.faq__answer p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}

/* ---- Footer ---- */
.footer {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(24, 160, 150, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(247, 148, 29, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #232844 0%, var(--dark) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-6);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 40%, var(--accent) 100%);
}
.footer__grid {
  display: grid;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
}
.footer__brand {
  position: relative;
}
.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: var(--space-2);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 280px;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-3);
}
.footer__social--networks {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.footer__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social-link--facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}
.footer__social-link--instagram:hover {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  border-color: #DD2A7B;
}
.footer__social-link--linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
}
.footer__social-link--youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-3);
  position: relative;
  padding-bottom: 10px;
}
.footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
  transition: color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}
.footer__link-icon {
  color: var(--primary-light);
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform var(--transition), color var(--transition);
}
.footer__nav a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer__nav a:hover .footer__link-icon {
  color: var(--accent);
  transform: translateX(2px);
}
.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer__contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  background: rgba(24, 160, 150, 0.14);
  border: 1px solid rgba(24, 160, 150, 0.22);
}
.footer__contact address,
.footer__contact-list a,
.footer__contact-list time,
.footer__contact-list span:not(.footer__contact-icon) {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.footer__contact-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer__contact-list a:hover {
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__bottom p {
  font-size: 0.875rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}
.footer__disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
.footer__credit {
  margin-top: 8px !important;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
.footer__credit a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__credit a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1.5fr;
    gap: var(--space-6);
    align-items: start;
  }
}

@media (max-width: 480px) {
  .site-logo--header {
    height: 52px;
    max-width: 240px;
  }
  .site-logo--footer {
    height: 60px;
    max-width: 260px;
  }
}

/* ---- Floating actions (Book + WhatsApp + Back to top) ---- */
.float-actions {
  position: fixed;
  z-index: 950;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.float-actions > * {
  pointer-events: auto;
}
.float-book,
.float-call,
.float-actions .back-to-top {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(10, 22, 40, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.float-book {
  background: var(--accent);
}
.float-call {
  background: var(--secondary);
}
.float-actions .back-to-top {
  right: auto;
  bottom: auto;
  z-index: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  background: var(--primary);
  box-shadow: 0 8px 22px rgba(10, 22, 40, 0.22);
}
.float-actions .back-to-top[hidden],
.float-actions .back-to-top:not(.visible) {
  display: none !important;
}
.float-book:hover,
.float-call:hover,
.float-actions .back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.28);
  color: #fff;
}
.float-book:focus-visible,
.float-call:focus-visible,
.float-actions .back-to-top:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}
.float-book__icon {
  display: flex;
  line-height: 0;
}
.float-book__text,
.float-call__text {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.float-book__text::after,
.float-call__text::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.float-book:hover .float-book__text,
.float-book:focus-visible .float-book__text,
.float-call:hover .float-call__text,
.float-call:focus-visible .float-call__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
@media (hover: none) {
  .float-book__text,
  .float-call__text {
    display: none;
  }
}
@media (min-width: 768px) {
  .float-actions {
    right: 22px;
    bottom: max(22px, env(safe-area-inset-bottom, 0px));
    gap: 14px;
  }
  .float-book,
  .float-call,
  .float-actions .back-to-top {
    width: 58px;
    height: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-book,
  .float-call,
  .float-actions .back-to-top {
    transition: none;
  }
}

/* legacy standalone back-to-top (fallback if outside float-actions) */
.back-to-top {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(10, 22, 40, 0.22);
  z-index: 900;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-2px);
}

/* ---- Reveal Animation ---- */
/* Never start at opacity:0 — blank sections on mobile if JS/cache lags */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0; }
.reveal:nth-child(3) { transition-delay: 0; }

/* Keep primary page sections fully visible (belt-and-suspenders) */
.sd-main.reveal,
.sd-related.reveal,
.service-cards.reveal,
.cta-banner.reveal,
.doctor-about.reveal,
.doctor-trust.reveal,
.doctor-details.reveal,
.contact.reveal,
.contact-enquiry.reveal,
.contact-info-strip.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Mobile: never hide content behind reveal animation */
@media (max-width: 991px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Reduced Motion ---- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll { animation: none; }
  .hero__orb { animation: none; }
  .hero__badge::before { animation: none; }
  .trust-strip::before { animation: none; }
  .hero__image-frame--premium::before { animation: none; }
  .profile-showcase::before { animation: none; }
  .profile-showcase:hover .profile-showcase__photo { transform: none; }
  .hero__visual:hover .hero__service-img { transform: none; }
  .btn--primary::after { display: none; }
  .btn:hover, .treatment-card:hover, .procedure-card:hover, .stats__item:hover {
    transform: none;
  }
}

/* ---- Inner Pages ---- */
body.inner-page {
  padding-top: calc(var(--topbar-height) + var(--header-height));
}
body.inner-page .header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
body.inner-page .site-logo--header {
  height: 70px;
}

.page-hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-6);
  background: linear-gradient(135deg, #0D2A28 0%, #128078 35%, #18A096 65%, #3F448C 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #A8E6E1 40%, #2BBBAD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 95% 10%, rgba(43, 187, 173, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(24, 160, 150, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, rgba(13, 42, 40, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-1);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.page-hero__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 560px;
}
.page-hero__inner--split {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.page-hero__visual {
  display: none;
}
.page-hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 992px) {
  .page-hero__inner--split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }
  .page-hero__visual {
    display: block;
  }
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: var(--space-3);
  font-size: 0.8125rem;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  opacity: 0.5;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li[aria-current="page"] { color: var(--white); font-weight: 600; }

.doctor-profile__grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
  position: relative;
  z-index: 1;
}
.doctor-profile {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

/* ---- Profile Showcase (Doctor Page) ---- */
.profile-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(24, 160, 150, 0.1);
  box-shadow:
    0 24px 64px rgba(10, 22, 40, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.profile-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light), var(--accent));
  background-size: 300% 300%;
  animation: borderGlow 8s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
.profile-showcase__glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(63, 68, 140, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.profile-showcase__media {
  position: relative;
  min-height: 360px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 100%);
}
.profile-showcase__photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-showcase:hover .profile-showcase__photo {
  transform: scale(1.03);
}
.profile-showcase__media-accent {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, transparent 35%),
    linear-gradient(180deg, transparent 45%, rgba(10, 22, 40, 0.85) 100%);
  pointer-events: none;
}
.profile-showcase__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 10px 18px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(63, 68, 140, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.profile-showcase__stat {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  min-width: 80px;
  text-align: center;
}
.profile-showcase__stat strong {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.profile-showcase__stat span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.profile-showcase__stat--1 {
  top: 24px;
  right: 20px;
}
.profile-showcase__stat--2 {
  top: 100px;
  right: 20px;
}
.profile-showcase__body {
  position: relative;
  padding: var(--space-4);
  background:
    linear-gradient(160deg, var(--white) 0%, #fafcfe 50%, var(--light) 100%);
}
.profile-showcase__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.profile-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(63, 68, 140, 0.08);
  border: 1px solid rgba(63, 68, 140, 0.15);
  border-radius: 100px;
  margin-bottom: var(--space-2);
}
.profile-showcase__eyebrow svg {
  color: var(--accent);
  flex-shrink: 0;
}
.profile-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.12;
}
.profile-showcase__title-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile-showcase__role {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed var(--border);
}
.profile-showcase__facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: var(--space-3);
}
.profile-showcase__fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.profile-showcase__fact:hover {
  transform: translateX(4px);
  border-color: rgba(63, 68, 140, 0.2);
  box-shadow: var(--shadow);
}
.profile-showcase__fact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(24, 160, 150, 0.1) 0%, rgba(63, 68, 140, 0.08) 100%);
  border-radius: 12px;
  color: var(--primary);
}
.profile-showcase__fact-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.profile-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.profile-showcase__quote {
  margin: 0 0 var(--space-3);
  padding: var(--space-3) var(--space-3) var(--space-3) calc(var(--space-3) + 4px);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(24, 160, 150, 0.06) 0%, rgba(63, 68, 140, 0.04) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
}
.profile-showcase__bio p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}
.profile-showcase__bio strong { color: var(--dark); }
.profile-showcase__highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-3);
}
.profile-showcase__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.profile-showcase__highlights li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
}
.profile-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .profile-showcase {
    grid-template-columns: 0.4fr 0.6fr;
    align-items: stretch;
  }
  .profile-showcase__media { min-height: 100%; }
  .profile-showcase__photo { min-height: 100%; }
  .profile-showcase__body {
    padding: var(--space-5) var(--space-5) var(--space-5) var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .profile-showcase__facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .profile-showcase__fact {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2) 10px;
    gap: 8px;
  }
  .profile-showcase__fact:hover { transform: translateY(-3px); }
  .profile-showcase__fact-text { font-size: 0.75rem; }
}

@media (min-width: 1024px) {
  .profile-showcase__body { padding: var(--space-6) var(--space-6) var(--space-6) var(--space-5); }
  .profile-showcase__title { font-size: 2.75rem; }
  .profile-showcase__stat--2 { top: 108px; }
}

@media (max-width: 767px) {
  .profile-showcase__stat--2 { display: none; }
  .profile-showcase__stat--1 {
    top: auto;
    bottom: 70px;
    right: 16px;
  }
}

.doctor-profile__content .section__title {
  text-align: left;
  margin-bottom: var(--space-2);
}
.doctor-profile__content .section__eyebrow {
  display: block;
  text-align: left;
}
.doctor-profile__content .section__eyebrow::before { display: none; }
.doctor-profile__content .section__title::after { margin-left: 0; }
.doctor-profile__content p {
  margin-bottom: var(--space-2);
  color: var(--muted);
  line-height: 1.8;
}
.doctor-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.doctor-card--page {
  max-width: 400px;
  margin: 0 auto;
}

.stats--compact {
  padding: var(--space-5) 0;
}
.stats--compact .stats__item {
  padding: var(--space-3);
}

.doctor-details__grid {
  display: grid;
  gap: var(--space-4);
}
.doctor-panel {
  padding: var(--space-4);
  background: linear-gradient(160deg, var(--white) 0%, var(--light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.doctor-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(63, 68, 140, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-panel:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(63, 68, 140, 0.15);
}
.doctor-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--light);
}
.doctor-panel__title svg {
  color: var(--accent);
  flex-shrink: 0;
}
.doctor-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.doctor-panel__list li {
  padding-left: 16px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}
.doctor-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.doctor-panel__list strong { color: var(--text); }
.doctor-panel__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.doctor-panel__tags li {
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.doctor-panel__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.doctor-panel__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.doctor-panel__contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}
.doctor-panel__contact a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
.doctor-panel__contact a:hover { color: var(--accent); }

@media (min-width: 768px) {
  .doctor-details__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   Premium Polish – Professional Medical UI
   ============================================= */

::selection {
  background: rgba(63, 68, 140, 0.2);
  color: var(--dark);
}

.section__bg-pattern--alt {
  background:
    radial-gradient(ellipse 45% 35% at 95% 15%, rgba(24, 160, 150, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 45% at 5% 85%, rgba(63, 68, 140, 0.04) 0%, transparent 50%);
}

.about,
.why,
.doctor-profile,
.doctor-details {
  position: relative;
  overflow: hidden;
}
.about .container,
.why .container,
.doctor-profile .container,
.doctor-details .container {
  position: relative;
  z-index: 1;
}

/* Section eyebrow – premium pill */
.section__eyebrow--pill {
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(63, 68, 140, 0.08) 0%, rgba(24, 160, 150, 0.06) 100%);
  border: 1px solid rgba(63, 68, 140, 0.15);
  border-radius: 100px;
}
.section__eyebrow--pill::before,
.section__eyebrow--pill::after { display: none; }

.section__eyebrow--light {
  color: rgba(255, 255, 255, 0.9);
}
.section__eyebrow--light::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
}
.section__eyebrow--light::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.section__title {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__content .section__title,
.doctor-profile__content .section__title {
  background: none;
  -webkit-text-fill-color: unset;
  color: var(--dark);
}

/* Header CTA polish */
@media (min-width: 992px) {
  .nav__cta {
    box-shadow: 0 4px 16px rgba(247, 148, 29, 0.32);
  }
}

/* Hero refinements */
.hero__address {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero__image-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(63, 68, 140, 0.4);
}
.hero__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

/* Stats premium */
.stats__header {
  text-align: center;
  margin-bottom: var(--space-5);
}
.stats__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  letter-spacing: -0.02em;
}
.stats--compact .stats__item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.stats__item {
  position: relative;
  overflow: hidden;
}
.stats__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.stats__item:hover::after { opacity: 1; }

/* Why cards – numbered */
.why-card {
  background: linear-gradient(160deg, var(--white) 0%, var(--light) 100%);
}
.why-card__icon {
  box-shadow: 0 4px 12px rgba(24, 160, 150, 0.08);
}

/* Treatment cards stagger hover */
.treatments__grid .treatment-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.treatment-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}
.treatment-card:hover .treatment-card__title {
  color: var(--primary);
}

/* Footer logo hover */

/* ---- Doctor Page (premium profile) ---- */
.doctor-page .doctor-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-6) + 8px) 0 var(--space-6);
  color: var(--dark);
  background:
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(24, 160, 150, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(247, 148, 29, 0.06), transparent 50%),
    linear-gradient(180deg, #f4faf9 0%, #ffffff 55%, #f7fbfb 100%);
}
.doctor-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 160, 150, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 160, 150, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 75%);
  opacity: 0.7;
}
.doctor-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.doctor-hero__crumb.breadcrumb a,
.doctor-hero__crumb.breadcrumb li {
  color: var(--muted);
}
.doctor-hero__crumb.breadcrumb a:hover { color: var(--primary); }
.doctor-hero__crumb.breadcrumb li[aria-current="page"] {
  color: var(--dark);
  font-weight: 600;
}
.doctor-hero__badge {
  display: inline-block;
  margin: 0 0 var(--space-2);
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(24, 160, 150, 0.1);
  border: 1px solid rgba(24, 160, 150, 0.18);
  border-radius: 999px;
}
.doctor-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
}
.doctor-hero__role {
  margin: 0 0 var(--space-2);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.doctor-hero__lead {
  margin: 0 0 var(--space-4);
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
}
.doctor-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-4);
}
.doctor-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  max-width: 460px;
  border-top: 1px solid rgba(24, 160, 150, 0.14);
  padding-top: var(--space-3);
}
.doctor-hero__meta > div {
  padding-right: var(--space-2);
}
.doctor-hero__meta > div:not(:first-child) {
  padding-left: var(--space-2);
  border-left: 1px solid rgba(24, 160, 150, 0.14);
}
.doctor-hero__meta dt {
  margin: 0 0 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.doctor-hero__meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
}
.doctor-hero__meta a {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  word-break: break-word;
}
.doctor-hero__meta a:hover { color: var(--accent); }
.doctor-hero__visual {
  display: flex;
  justify-content: center;
}
.doctor-hero__portrait {
  position: relative;
  margin: 0;
  width: min(100%, 420px);
}
.doctor-hero__ring {
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  border: 1px solid rgba(24, 160, 150, 0.22);
  pointer-events: none;
}
.doctor-hero__ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  border: 1px solid rgba(247, 148, 29, 0.28);
}
.doctor-hero__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow:
    0 18px 50px rgba(26, 31, 58, 0.14),
    0 4px 16px rgba(24, 160, 150, 0.1);
}
.doctor-hero__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26, 31, 58, 0.12);
  backdrop-filter: blur(10px);
}
.doctor-hero__caption-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.doctor-hero__caption-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 900px) {
  .doctor-hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: var(--space-6);
  }
  .doctor-hero__visual { justify-content: flex-end; }
  .doctor-hero__portrait { width: min(100%, 440px); }
}
@media (max-width: 599px) {
  .doctor-hero__meta { grid-template-columns: 1fr; gap: 12px; }
  .doctor-hero__meta > div:not(:first-child) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(24, 160, 150, 0.12);
    padding-top: 12px;
  }
  .doctor-hero__actions { flex-direction: column; }
  .doctor-hero__actions .btn { width: 100%; justify-content: center; }
}

.doctor-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 22px 0;
  background:
    radial-gradient(ellipse 50% 120% at 100% 50%, rgba(247, 148, 29, 0.18), transparent 55%),
    linear-gradient(90deg, #0b2c2a 0%, #0f5a54 48%, #15958c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.doctor-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
}
.doctor-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.doctor-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.doctor-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #1a1f3a;
  background: linear-gradient(180deg, #ffe9c2 0%, #f7941d 100%);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(247, 148, 29, 0.28);
}
.doctor-strip__copy {
  min-width: 0;
}
.doctor-strip__kicker {
  display: block;
  margin-bottom: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd9a0;
}
.doctor-strip__copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}
.doctor-strip__copy strong {
  color: #fff;
  font-weight: 700;
  margin-right: 4px;
}
.doctor-strip__copy p,
.doctor-strip__copy a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  word-break: break-word;
}
.doctor-strip__copy a:hover { color: #ffe9c2; }
@media (min-width: 900px) {
  .doctor-strip {
    padding: 18px 0;
  }
  .doctor-strip__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .doctor-strip__item {
    padding: 8px 10px 8px 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
  }
  .doctor-strip__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.28), transparent);
  }
}

.doctor-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
}
.doctor-about__grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}
.doctor-about .section__title--left { text-align: left; }
.doctor-about .section__title--left::after { margin-left: 0; }
.doctor-about .section__eyebrow::before { display: none; }
.doctor-about__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.doctor-about__quote {
  margin: 0 0 var(--space-3);
  padding: var(--space-3) var(--space-3) var(--space-3) calc(var(--space-3) + 4px);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(24, 160, 150, 0.07), rgba(247, 148, 29, 0.05));
  border-left: 3px solid var(--accent);
  border-radius: 0 16px 16px 0;
}
.doctor-about__copy {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  line-height: 1.75;
}
.doctor-about__points {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: grid;
  gap: 12px;
}
.doctor-about__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.12);
  border-radius: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(26, 31, 58, 0.03);
}
.doctor-about__points span {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.doctor-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.doctor-side-panel {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.14);
  border-radius: 22px;
  padding: var(--space-4);
  box-shadow:
    0 8px 28px rgba(26, 31, 58, 0.05),
    0 20px 48px rgba(24, 160, 150, 0.06);
}
.doctor-side-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 0 0 4px 4px;
}
.doctor-side-panel__head {
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(24, 160, 150, 0.12);
}
.doctor-side-panel__head h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: var(--dark);
}
.doctor-side-panel__head p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.doctor-side-panel__list {
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
  display: grid;
  gap: 16px;
}
.doctor-side-panel__list li {
  display: grid;
  gap: 4px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}
.doctor-side-panel__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.doctor-side-panel__list a {
  color: var(--primary);
  font-weight: 700;
}
.doctor-side-panel__list a:hover { color: var(--accent); }

@media (min-width: 900px) {
  .doctor-about__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-6);
  }
}

.doctor-trust {
  background: linear-gradient(180deg, #f5fbfa 0%, #ffffff 100%);
}
.doctor-trust__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.doctor-trust__card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.12);
  border-radius: 20px;
  padding: var(--space-4);
  box-shadow: 0 8px 28px rgba(26, 31, 58, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.doctor-trust__card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 160, 150, 0.28);
  box-shadow: 0 16px 40px rgba(24, 160, 150, 0.1);
}
.doctor-trust__index {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.doctor-trust__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.doctor-trust__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
@media (min-width: 700px) {
  .doctor-trust__grid { grid-template-columns: 1fr 1fr; }
  .doctor-trust__grid--three { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .doctor-trust__grid { grid-template-columns: repeat(4, 1fr); }
  .doctor-trust__grid--three { grid-template-columns: repeat(3, 1fr); }
}

.doctor-page .doctor-details {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf9 100%);
}
.doctor-page .doctor-panel {
  border-radius: 20px;
  border-color: rgba(24, 160, 150, 0.12);
  box-shadow: 0 10px 32px rgba(26, 31, 58, 0.05);
  background: var(--white);
}
.doctor-page .doctor-panel:hover {
  border-color: rgba(24, 160, 150, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .doctor-trust__card { transition: none; }
  .doctor-trust__card:hover { transform: none; }
}

/* Doctor page panels */
.doctor-details {
  position: relative;
  overflow: hidden;
}
.doctor-panel__tags li {
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.doctor-panel__tags li:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.doctor-nav {
  position: sticky;
  top: calc(var(--topbar-height) + var(--header-height));
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 160, 150, 0.12);
}
.doctor-nav__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.doctor-nav__inner::-webkit-scrollbar { display: none; }
.doctor-nav__link {
  flex-shrink: 0;
  padding: 7px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.doctor-nav__link:hover {
  color: var(--primary);
  background: rgba(24, 160, 150, 0.08);
  border-color: rgba(24, 160, 150, 0.14);
}

.doctor-career,
.doctor-practice,
.doctor-research,
.doctor-memberships {
  position: relative;
  overflow: hidden;
}
.doctor-career,
.doctor-research {
  background: #fff;
}
.doctor-practice,
.doctor-memberships {
  background: linear-gradient(180deg, #f5fbfa 0%, #ffffff 100%);
}
.doctor-career__grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}
.doctor-career .section__header,
.doctor-practice .section__header {
  margin-bottom: var(--space-3);
}
.doctor-about,
.doctor-trust,
.doctor-career,
.doctor-practice,
.doctor-research,
.doctor-memberships {
  scroll-margin-top: calc(var(--topbar-height) + var(--header-height) + 58px);
}
#experience,
#teaching,
#presentations {
  scroll-margin-top: calc(var(--topbar-height) + var(--header-height) + 58px);
}

.cv-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.cv-timeline li {
  position: relative;
  padding: 16px 18px 16px 22px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.12);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(26, 31, 58, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cv-timeline li:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 160, 150, 0.24);
  box-shadow: 0 12px 28px rgba(24, 160, 150, 0.1);
}
.cv-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}
.cv-timeline__when {
  display: block;
  margin-bottom: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.cv-timeline__role {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.cv-timeline__place {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.doctor-skill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.doctor-skill-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.12);
  border-radius: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(26, 31, 58, 0.03);
}
.doctor-skill-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.16);
}

.doctor-research__grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}
.doctor-research__heading {
  margin: 0 0 var(--space-3);
  font-size: 1.15rem;
  color: var(--dark);
}
.cv-list,
.cv-pubs {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.cv-list { list-style: none; }
.cv-list li,
.cv-pubs li {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.12);
  border-radius: 14px;
  color: var(--muted);
  line-height: 1.7;
  box-shadow: 0 4px 16px rgba(26, 31, 58, 0.03);
}
.cv-pubs {
  list-style: none;
  counter-reset: pub;
}
.cv-pubs li {
  padding-left: 52px;
  position: relative;
}
.cv-pubs li::before {
  counter-increment: pub;
  content: counter(pub, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.cv-list strong,
.cv-pubs em {
  color: var(--dark);
  font-style: italic;
}
.cv-list strong { font-style: normal; }

.member-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.member-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 22px 20px 20px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 42, 40, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.member-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 160, 150, 0.28);
  box-shadow: 0 16px 36px rgba(15, 42, 40, 0.1);
}
.member-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.member-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  color: #1a1f3a;
  background: linear-gradient(180deg, #ffe9c2 0%, #f7941d 100%);
  box-shadow: 0 6px 14px rgba(247, 148, 29, 0.22);
}
.member-card__kicker {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.member-card__abbr {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.1;
}
.member-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 700px) {
  .member-board { grid-template-columns: 1fr 1fr; }
  .doctor-nav__inner { justify-content: center; }
}
@media (min-width: 900px) {
  .doctor-career__grid,
  .doctor-research__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}
@media (min-width: 1100px) {
  .member-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cv-timeline li,
  .doctor-skill-list li,
  .cv-list li,
  .cv-pubs li,
  .member-card { transition: none; }
  .cv-timeline li:hover,
  .member-card:hover { transform: none; }
}



/* Trust strip cards on mobile */
@media (max-width: 767px) {
  .trust-strip__item {
    border-radius: 0;
  }
  .trust-strip__grid {
    gap: 0;
  }
}

/* Subtle card entrance for grid children */
@media (prefers-reduced-motion: no-preference) {
  .treatments__grid .treatment-card:nth-child(1) { transition-delay: 0ms; }
  .treatments__grid .treatment-card:nth-child(2) { transition-delay: 40ms; }
  .treatments__grid .treatment-card:nth-child(3) { transition-delay: 80ms; }
  .why__grid .why-card:nth-child(1) { transition-delay: 0ms; }
  .why__grid .why-card:nth-child(2) { transition-delay: 60ms; }
  .why__grid .why-card:nth-child(3) { transition-delay: 120ms; }
  .why__grid .why-card:nth-child(4) { transition-delay: 180ms; }
}

/* =============================================
   Services Page
   ============================================= */

/* Service cards – reference layout (image / title / desc / Learn More) */
.service-cards {
  background: #f7f9fc;
}
.service-cards__grid {
  display: grid;
  gap: 28px;
}
.service-cards--procedures {
  background: #fff;
}
.home-procedures__grid {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .home-procedures__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-conditions {
  background: linear-gradient(180deg, #f5fbfa 0%, #ffffff 100%);
}
.home-conditions__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.home-condition {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.14);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 42, 40, 0.04);
}
.home-condition h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.35;
}
.home-condition p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.home-condition a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.home-condition a:hover { color: var(--accent); }
@media (min-width: 700px) {
  .home-conditions__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .home-conditions__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Index services auto slider */
.services-slider {
  position: relative;
}
.services-slider__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
}
.services-slider__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 24px;
  animation: services-marquee 48s linear infinite;
  will-change: transform;
}
.services-slider.is-paused .services-slider__track,
.services-slider:hover .services-slider__track {
  animation-play-state: paused;
}
.services-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .services-slider__slide {
    flex-basis: calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media (min-width: 992px) {
  .services-slider__slide {
    flex-basis: calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}
@keyframes services-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--loop, 50%)), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .services-slider__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .services-slider__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* Home gallery auto slider */
.home-gallery .service-cards__footer {
  margin-top: var(--space-5);
  text-align: center;
}
.gallery-slider .gallery-item {
  height: 100%;
}
.gallery-slider .gallery-item img {
  height: 240px;
}
@media (min-width: 992px) {
  .gallery-slider .gallery-item img {
    height: 260px;
  }
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.14);
  transform: translateY(-6px);
}
.service-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #18A096;
  line-height: 0;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.service-card:hover .service-card__img {
  transform: scale(1.05);
}
.service-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #18A096;
  line-height: 1.45;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card__desc {
  color: #5A6F82;
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #18A096;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}
.service-card__link:hover {
  gap: 10px;
  color: var(--accent);
}
.service-card__link span {
  font-size: 1.05em;
  line-height: 1;
}
.service-cards__footer {
  text-align: center;
  margin-top: var(--space-5);
}

.services-featured {
  position: relative;
  overflow: hidden;
}
.services-featured .container {
  position: relative;
  z-index: 1;
}
.services-featured__grid {
  display: grid;
  gap: var(--space-4);
}
.service-feature {
  background: linear-gradient(160deg, var(--white) 0%, var(--light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(63, 68, 140, 0.15);
}
.service-feature__image {
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(24, 160, 150, 0.04) 0%, rgba(63, 68, 140, 0.04) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.service-feature__image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  transition: transform var(--transition);
}
.service-feature:hover .service-feature__image img {
  transform: scale(1.05);
}
.service-feature__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-feature__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: var(--space-2);
  line-height: 1.35;
}
.service-feature__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-3);
}
.service-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}
.service-feature__link:hover {
  gap: 10px;
  color: var(--primary);
}

.service-section-intro {
  display: grid;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-5);
}
.service-section-intro--reverse .service-section-intro__header {
  order: 1;
}
.service-section-intro--reverse .service-section-intro__media {
  order: 2;
}
.service-section-intro__media {
  display: flex;
  justify-content: center;
}
.service-section-intro__img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  background: var(--light);
  padding: var(--space-4);
}
.service-section-intro__img--photo {
  max-width: 100%;
  padding: 0;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.section__header--left {
  text-align: left;
}
.section__header--left .section__eyebrow {
  display: block;
}
.section__header--left .section__eyebrow::before {
  display: none;
}
.section__header--left .section__title::after {
  margin-left: 0;
}
.section__header--left .section__subtitle {
  margin-left: 0;
  margin-right: 0;
}

.service-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2) 0;
}
.service-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}
.service-nav__link {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.service-nav__link:hover {
  color: var(--accent);
  background: rgba(63, 68, 140, 0.06);
  border-color: rgba(63, 68, 140, 0.12);
}

.service-block {
  position: relative;
  overflow: hidden;
}
.service-block .container {
  position: relative;
  z-index: 1;
}
.service-block__grid {
  display: grid;
  gap: var(--space-4);
}
.service-block__card {
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
a.service-block__card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-block__more {
  display: inline-block;
  padding: 0 var(--space-4) var(--space-3);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.service-block__card .service-block__desc {
  padding-bottom: var(--space-2);
}
.service-block__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-block__image {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(24, 160, 150, 0.06) 0%, rgba(63, 68, 140, 0.04) 100%);
  border-bottom: 1px solid var(--border);
}
.service-block__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.service-block__card:hover .service-block__image img {
  transform: scale(1.04);
}
.service-block__card .service-block__title,
.service-block__card .service-block__desc {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
.service-block__card .service-block__title {
  padding-top: var(--space-3);
}
.service-block__card .service-block__desc {
  padding-bottom: var(--space-4);
}
.service-block__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: var(--space-2);
}
.service-block__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-transplant {
  background: linear-gradient(160deg, var(--light) 0%, var(--white) 100%);
}
.service-transplant__grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.service-transplant__content .section__title {
  text-align: left;
}
.service-transplant__content .section__eyebrow {
  display: block;
  text-align: left;
}
.service-transplant__content .section__eyebrow::before {
  display: none;
}
.service-transplant__content .section__title::after {
  margin-left: 0;
}
.service-transplant__lead {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
  font-size: 1.05rem;
}
.service-transplant__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.service-transplant__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  line-height: 1.6;
}
.service-transplant__list svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.service-transplant__visual {
  display: flex;
  justify-content: center;
}
.service-transplant__frame {
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 360px;
  width: 100%;
  overflow: hidden;
}
.service-transplant__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-card) - 8px);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  margin-bottom: var(--space-3);
}
.service-transplant__stat {
  font-size: 0.95rem;
  color: var(--muted);
}
.service-transplant__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .service-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-section-intro {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-5);
  }
  .service-section-intro--reverse {
    grid-template-columns: 1.2fr 1fr;
  }
  .service-section-intro--reverse .service-section-intro__header {
    order: 0;
  }
  .service-section-intro--reverse .service-section-intro__media {
    order: 0;
  }
}
@media (min-width: 992px) {
  .service-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-featured__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-transplant__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .service-section-intro__img {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .service-nav {
    top: 64px;
  }
}

/* Services page – premium UI polish */
.services-page .services-section {
  scroll-margin-top: 120px;
}
.page-hero--services {
  padding-bottom: var(--space-5);
}
@media (max-width: 767px) {
  :root {
    --header-height: 72px;
  }
  .page-hero,
  .page-hero--services {
    padding: var(--space-4) 0 var(--space-4);
  }
  .page-hero__title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }
  .page-hero__subtitle {
    font-size: 1rem;
  }
  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .service-cards {
    padding-top: var(--space-4);
    padding-bottom: var(--space-5);
  }
  .service-cards__grid {
    gap: 20px;
  }
  body.inner-page .site-logo--header {
    height: 52px;
  }
}
.page-hero__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: var(--space-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.page-hero__frame {
  position: relative;
}
.page-hero__image--svg {
  object-fit: contain;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
}
.page-hero__tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.service-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin: var(--space-3) 0;
}
.service-hero-stats li {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.service-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.2;
}
.services-trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) 0;
}
.services-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.services-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--space-3);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}
.services-trust__item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.service-feature {
  position: relative;
}
.service-feature__num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.service-feature__tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: var(--space-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(63, 68, 140, 0.08);
  border-radius: 100px;
}
.service-nav__link.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(63, 68, 140, 0.25);
}
.service-transplant__stat span {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}
@media (min-width: 768px) {
  .services-trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================
   Contact Page
   ============================================= */
.page-hero--contact {
  padding: calc(var(--space-6) + 8px) 0 var(--space-7);
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(247, 148, 29, 0.16), transparent 52%),
    linear-gradient(135deg, #0b2c2a 0%, #0f5a54 42%, #147f76 100%);
}
.page-hero--contact .page-hero__title {
  text-shadow: none;
  letter-spacing: -0.035em;
}
.page-hero--contact .page-hero__subtitle {
  max-width: 520px;
  opacity: 0.92;
  line-height: 1.7;
}
.contact-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
}
.contact-hero-facts li {
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
.contact-hero-facts strong {
  margin-right: 4px;
  color: #ffe7b8;
}
.page-hero__inner--contact {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.contact-hero-panel {
  width: 100%;
  max-width: 420px;
  padding: 22px 22px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(8, 24, 22, 0.22);
  backdrop-filter: blur(16px);
}
.contact-hero-panel__head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-hero-panel__eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd9a0;
}
.contact-hero-panel__head p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.contact-hero-panel__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-hero-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-hero-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #1a1f3a;
  background: linear-gradient(180deg, #ffe9c2 0%, #f7941d 100%);
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(247, 148, 29, 0.25);
}
.contact-hero-panel__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 3px;
}
.contact-hero-panel__value {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
.contact-hero-panel__value a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.contact-hero-panel__value a:hover {
  border-bottom-color: #ffd9a0;
}
@media (min-width: 900px) {
  .page-hero__inner--contact {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-6);
  }
  .contact-hero-panel {
    justify-self: end;
  }
}

.contact-info-strip {
  background: linear-gradient(180deg, #f4faf9 0%, #f7f9fc 100%);
  margin-top: -48px;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.contact-info-strip__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.contact-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 22px 20px 18px;
  background: var(--white);
  border: 1px solid rgba(24, 160, 150, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 42, 40, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 160, 150, 0.28);
  box-shadow: 0 16px 36px rgba(15, 42, 40, 0.1);
}
.contact-info-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-info-card__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1f3a;
  background: linear-gradient(180deg, #ffe9c2 0%, #f7941d 100%);
  box-shadow: 0 6px 14px rgba(247, 148, 29, 0.22);
  margin: 0;
}
.contact-info-card__kicker {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.contact-info-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.3;
}
.contact-info-card__text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-info-card__text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.contact-info-card__text a:hover {
  color: var(--accent);
}
.contact-info-card__value {
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
}
a.contact-info-card--action {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.contact-info-card--action:hover .contact-info-card__link {
  background: var(--primary);
  color: var(--white);
}
a.contact-info-card--action:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.contact-info-card__note {
  margin: 14px 0 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.4;
}
.contact-info-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 16px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  background: rgba(24, 160, 150, 0.08);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-info-card__link:hover {
  background: var(--primary);
  color: var(--white);
}
@media (min-width: 640px) {
  .contact-info-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contact-info-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-enquiry {
  background: var(--white);
}
.contact-page__grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}
.contact-page__form-wrap .section__header {
  margin-bottom: var(--space-4);
}
.contact-page__form-wrap .section__subtitle {
  max-width: none;
}
.contact-page__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-page__map-card {
  background: linear-gradient(160deg, var(--white) 0%, #f7f9fc 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-4);
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.06);
}
.contact-page__map-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-page__map-text {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--space-3);
}
.contact-page__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: var(--space-3);
  aspect-ratio: 4 / 3;
  background: #e8eef4;
}
.contact-page__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-page__doctor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--space-3);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.05);
}
.contact-page__doctor-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(63, 68, 140, 0.15);
  flex-shrink: 0;
}
.contact-page__doctor-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-page__doctor-role {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .contact-page__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-5);
  }
  .contact-page__map {
    aspect-ratio: 1 / 1;
    min-height: 280px;
  }
}

/* =============================================
   Service Detail Page (professional layout)
   ============================================= */
.sd-hero {
  position: relative;
  padding: var(--space-5) 0 var(--space-6);
  background: linear-gradient(135deg, #0D2A28 0%, #128078 35%, #18A096 65%, #3F448C 100%);
  color: var(--white);
  overflow: hidden;
}
.sd-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 95% 10%, rgba(43, 187, 173, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(24, 160, 150, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, rgba(13, 42, 40, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.sd-hero .hero__decor {
  z-index: 0;
}
.sd-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.sd-hero__copy {
  max-width: 640px;
}
.sd-hero .breadcrumb {
  margin-bottom: var(--space-2);
}
.sd-hero .breadcrumb ol {
  margin-bottom: 0;
}
.sd-hero__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
.sd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.sd-hero .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #A8E6E1 40%, #2BBBAD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sd-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 540px;
  margin-bottom: var(--space-3);
}
.sd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.sd-hero__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.sd-hero__visual {
  display: none;
}
.sd-hero__frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  aspect-ratio: 4 / 3;
}
.sd-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-3);
  display: block;
}
.sd-hero__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
}

.sd-main {
  background: #f5f7fb;
  padding-top: var(--space-5);
}
.sd-layout {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}
.sd-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.05);
}
.sd-cover {
  background: linear-gradient(145deg, #128078, #18A096);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.sd-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-block {
  padding: 28px 28px 0;
}
.sd-block:last-child {
  padding-bottom: 32px;
}
.sd-block__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.sd-block p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 1rem;
}
.sd-block p:last-child {
  margin-bottom: 0;
}

.sd-checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}
.sd-checklist li {
  position: relative;
  padding: 14px 16px 14px 48px;
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.sd-checklist li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(63, 68, 140, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12l4 4 8-8' stroke='%2318A096' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.sd-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sd-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.sd-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 16px rgba(63, 68, 140, 0.22);
}
.sd-step h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.sd-step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.sd-why {
  display: grid;
  gap: 12px;
}
.sd-why__item {
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(63, 68, 140, 0.05), transparent);
  border-radius: 0 12px 12px 0;
}
.sd-why__item strong {
  display: block;
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.sd-why__item span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.sd-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--topbar-height) + var(--header-height) + 16px);
  z-index: 5;
  align-self: start;
}
.sd-book {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.08);
}
.sd-book__doctor {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.sd-book__doctor::before {
  content: "RV";
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 3px solid rgba(24, 160, 150, 0.2);
  box-shadow: 0 4px 12px rgba(24, 160, 150, 0.2);
}
.sd-book__doctor img {
  display: none;
}
.sd-book__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  line-height: 1.3;
}
.sd-book__role {
  font-size: 0.8125rem;
  color: var(--muted);
}
.sd-book__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.sd-book__meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}
.sd-book__meta svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}
.sd-book__meta a {
  color: var(--primary);
  text-decoration: none;
}
.sd-book__meta a:hover {
  color: var(--accent);
}
.sd-book__call {
  margin-top: 10px;
}
.sd-book__link {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.sd-book__link:hover {
  color: var(--accent);
}
.sd-aside-links {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
}
.sd-aside-links h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.sd-aside-links a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}
.sd-aside-links a:last-child {
  border-bottom: none;
  color: var(--accent);
  font-weight: 600;
}
.sd-aside-links a:hover {
  color: var(--accent);
}

.sd-related {
  background: var(--white);
}
.sd-related .service-cards__grid {
  grid-template-columns: 1fr;
}

/* =============================================
   Gallery Page
   ============================================= */
.gallery-section {
  background: var(--light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  appearance: none;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.gallery-item__btn:hover img {
  transform: scale(1.03);
}
.gallery-item--wide img {
  height: 320px;
  object-fit: cover;
  object-position: top center;
}
.gallery-item figcaption {
  padding: 14px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gallery-lightbox[hidden] {
  display: none;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 58, 0.82);
  backdrop-filter: blur(6px);
}
.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: galleryPop 0.28s ease;
}
.gallery-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: var(--white);
}
.gallery-lightbox__caption {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.gallery-lightbox__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(24, 160, 150, 0.35);
  z-index: 2;
}
.gallery-lightbox__close:hover {
  background: var(--accent-dark);
}
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.gallery-lightbox__nav:hover {
  color: var(--primary);
}
.gallery-lightbox__nav--prev { left: -8px; }
.gallery-lightbox__nav--next { right: -8px; }
@keyframes galleryPop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
body.gallery-open {
  overflow: hidden;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--wide {
    grid-column: 1 / -1;
  }
  .gallery-item--wide img {
    height: 420px;
  }
  .gallery-lightbox__nav--prev { left: -20px; }
  .gallery-lightbox__nav--next { right: -20px; }
}
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item--wide {
    grid-column: 1 / -1;
  }
  .gallery-item img {
    height: 260px;
  }
}

@media (min-width: 640px) {
  .sd-why {
    grid-template-columns: repeat(2, 1fr);
  }
  .sd-related .service-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sd-block {
    padding-left: 36px;
    padding-right: 36px;
  }
  .sd-block:last-child {
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  /* transform on reveal breaks sticky */
  .sd-main.reveal,
  .sd-main.reveal.visible {
    transform: none;
  }
  .sd-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
    gap: 32px;
  }
  .sd-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-5);
  }
  .sd-hero__visual {
    display: block;
  }
}
@media (max-width: 991px) {
  .sd-aside {
    position: static;
  }
}
@media (max-width: 767px) {
  .sd-hero {
    padding: var(--space-4) 0 var(--space-5);
  }
  .sd-hero__title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }
  .sd-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sd-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .sd-block {
    padding: 22px 20px 0;
  }
  .sd-block:last-child {
    padding-bottom: 24px;
  }
}

/* ---- Book Appointment Modal ---- */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.book-modal[hidden] {
  display: none;
}
.book-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 45, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.book-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: linear-gradient(165deg, #ffffff 0%, #F4FBFA 100%);
  border-radius: 20px;
  border: 1px solid rgba(24, 160, 150, 0.14);
  box-shadow: 0 28px 80px rgba(8, 30, 40, 0.35);
  padding: 28px 24px 24px;
  animation: bookModalIn 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.book-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 20px 20px 0 0;
}
.book-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--light-alt);
  color: var(--dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.book-modal__close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}
.book-modal__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.book-modal__title {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--dark);
  letter-spacing: -0.02em;
  padding-right: 40px;
}
.book-modal__desc {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.book-modal__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.book-modal__form .form-group label {
  font-size: 0.8125rem;
}
.book-modal__form .form-group input,
.book-modal__form .form-group textarea {
  padding: 12px 14px;
  font-size: 0.9375rem;
}
.book-modal__form .form-group textarea {
  min-height: 96px;
}
.book-modal__form .form-disclaimer {
  margin: 0;
  font-size: 0.75rem;
}
.book-modal__form .form-success {
  margin-top: 4px;
}
body.book-modal-open {
  overflow: hidden;
}
@keyframes bookModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (min-width: 560px) {
  .book-modal__dialog {
    padding: 32px 28px 28px;
  }
  .book-modal__form {
    grid-template-columns: 1fr 1fr;
  }
  .book-modal__form .form-group--full {
    grid-column: 1 / -1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .book-modal__dialog { animation: none; }
  .book-modal__close:hover { transform: none; }
}
