:root {
  --ink: #203f73;
  --ink-deep: #18345f;
  --muted: #627087;
  --blue-soft: #eaf1f8;
  --blue-pale: #f5f8fc;
  --yellow: #f7b612;
  --yellow-deep: #e5a000;
  --line: #d9e2ee;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(32, 63, 115, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 182, 18, 0.12), transparent 26rem),
    radial-gradient(circle at 92% 22%, rgba(32, 63, 115, 0.1), transparent 28rem),
    var(--blue-pale);
  line-height: 1.55;
}

a {
  color: inherit;
}

.top-contact-bar {
  display: flex;
  justify-content: flex-start;
  gap: clamp(16px, 3vw, 34px);
  padding: 9px clamp(20px, 5vw, 72px);
  color: rgba(24, 52, 95, 0.78);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 238, 0.88);
}

.top-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.top-contact-bar a:hover {
  color: var(--ink);
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 16px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.language-select span {
  font-size: 0.82rem;
}

.language-select select {
  min-height: 30px;
  padding: 4px 30px 4px 10px;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.google-rating-callout {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 4px 0 24px;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(247, 182, 18, 0.14);
  border: 1px solid rgba(247, 182, 18, 0.36);
  border-radius: 8px;
}

@keyframes hero-slideshow {
  0%,
  100% {
    opacity: 0;
  }

  1.5%,
  7% {
    opacity: 1;
  }

  8.5% {
    opacity: 0;
  }
}

.top-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1;
}

.top-contact-icon-whatsapp {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 238, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(178px, 16vw, 210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.95rem;
}

.site-nav a {
  color: #1d2431;
  font-weight: 560;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 3px;
  margin-top: 6px;
  background: var(--yellow);
  border-radius: 999px;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--yellow);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 76px), 860px);
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.hero::after,
.doctor-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 63, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 63, 115, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 68%);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f5f8fc;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(245, 248, 252, 0.98) 0%, rgba(245, 248, 252, 0.82) 42%, rgba(245, 248, 252, 0.18) 78%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--slide-bg) center right / cover no-repeat;
  opacity: 0;
  animation: hero-slideshow 72s infinite;
  animation-delay: var(--slide-delay);
}

.hero-slide:nth-child(2) {
  background-position: center 42%;
}

.hero-slide:nth-child(3),
.hero-slide:nth-child(5),
.hero-slide:nth-child(6),
.hero-slide:nth-child(10),
.hero-slide:nth-child(12) {
  background-position: center;
}

.hero-slide:first-child {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 680;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 660;
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
}

.hero p:not(.eyebrow) {
  max-width: 940px;
  color: #526074;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 650;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(32, 63, 115, 0.16);
}

.button.primary {
  color: var(--ink-deep);
  background: var(--yellow);
}

.button.primary:hover {
  background: var(--yellow-deep);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -42px clamp(20px, 5vw, 72px) 0;
  background: var(--line);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.info-strip article {
  min-width: 0;
  padding: 26px;
  background: var(--white);
}

.info-strip article:first-child {
  color: var(--white);
  background: var(--ink);
}

.info-strip article:nth-child(2) {
  color: var(--ink-deep);
  background: var(--yellow);
}

.info-strip article:first-child span,
.info-strip article:first-child a,
.info-strip article:nth-child(2) span,
.info-strip article:nth-child(2) a {
  color: inherit;
}

.info-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-strip strong {
  display: block;
  margin: 7px 0 12px;
  font-weight: 620;
}

.info-strip a,
.text-link {
  color: var(--ink);
  font-weight: 650;
}

.section {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.about-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.about-modern {
  grid-template-columns: minmax(280px, 0.94fr) minmax(320px, 1fr);
  align-items: stretch;
  background: var(--white);
}

.about-image-panel {
  width: 100%;
  min-height: clamp(360px, 34vw, 500px);
  align-self: center;
  background:
    linear-gradient(180deg, rgba(24, 52, 95, 0.02), rgba(24, 52, 95, 0.08)),
    url("assets/hero-slides/hero-slide-03.jpg") center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy-panel {
  align-self: center;
}

.about-copy-panel h2 {
  color: var(--ink);
}

.about-copy-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-highlight-list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.about-highlight-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 520;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition:
    color 180ms ease,
    padding 180ms ease,
    background 180ms ease;
}

.about-highlight-list a:hover {
  padding-inline: 12px;
  color: var(--ink-deep);
  background: var(--blue-pale);
}

.about-highlight-list strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.visit-section {
  align-items: center;
}

.section-copy p:not(.eyebrow),
.contact-copy p,
.doctor-panel p,
.visit-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.services-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article,
.services-grid article,
.visit-card,
.contact-form {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-grid article:hover,
.services-grid article:hover,
.contact-form:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 63, 115, 0.28);
  box-shadow: 0 16px 44px rgba(32, 63, 115, 0.12);
}

.icon-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) center / 20px 7px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) center / 7px 20px no-repeat,
    var(--ink);
  border-radius: 50%;
}

.feature-grid p,
.services-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.services-section {
  background: var(--blue-soft);
}

.trust-section {
  padding-block: clamp(34px, 4.5vw, 56px);
  scroll-margin-top: 120px;
  background: #ffffff;
}

.trust-shell {
  display: grid;
  gap: clamp(30px, 5vw, 42px);
}

.trust-label {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-strip-card {
  padding: clamp(8px, 1.4vw, 14px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(32, 63, 115, 0.08);
}

.logo-strip-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.insurance-logo-strip {
  padding-block: clamp(8px, 1.2vw, 12px);
}

.accreditation-logo-strip {
  padding: clamp(6px, 1vw, 10px);
  overflow-x: auto;
  scrollbar-width: thin;
}

.accreditation-logo-strip img {
  min-width: 980px;
}

.scheme-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.scheme-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 63, 115, 0.06);
}

.scheme-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #fbf8ef;
  border-radius: 8px;
}

.scheme-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scheme-card strong,
.scheme-card small {
  display: block;
  line-height: 1.12;
}

.scheme-card strong {
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 760;
}

.scheme-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 520;
}

.insurance-panel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.insurance-panel {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 14px;
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 780;
  line-height: 1;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(32, 63, 115, 0.12);
}

.insurance-panel span {
  font-size: 0.82em;
  font-weight: 620;
}

.ihp {
  background: linear-gradient(135deg, #19ade2, #075e99);
}

.mhc {
  background: linear-gradient(135deg, #2359df, #14266f);
}

.great-eastern {
  background: linear-gradient(135deg, #d74711, #9f2105);
}

.aia {
  background: linear-gradient(135deg, #c8192a, #7b080e);
}

.singlife {
  background: linear-gradient(135deg, #e12c89, #9b0e3e);
}

.sompo {
  background: linear-gradient(135deg, #294ebd, #262b78);
}

.liberty {
  background: linear-gradient(135deg, #dc2633, #930d14);
}

.fullerton {
  background: linear-gradient(135deg, #102238, #081422);
}

.aon {
  background: linear-gradient(135deg, #d31a23, #6f0508);
}

.more-panels {
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.services-preview-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.services-preview-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 42px auto 0;
}

.service-preview-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 176px;
  padding: 28px 18px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 226, 238, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(32, 63, 115, 0.06);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 182, 18, 0.2), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 182, 18, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-preview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 182, 18, 0.8);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(32, 63, 115, 0.14);
}

.service-preview-card:hover::before {
  opacity: 1;
}

.service-preview-card h3 {
  position: relative;
  max-width: 190px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 560;
  line-height: 1.12;
}

.service-line-icon {
  position: relative;
  width: 58px;
  height: 58px;
  color: var(--yellow);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.service-preview-card:hover .service-line-icon {
  color: var(--yellow-deep);
  transform: translateY(-3px) scale(1.08);
}

.services-preview-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.doctor-section {
  position: relative;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(247, 182, 18, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--ink-deep), #0f274d 64%, #102b56);
}

.doctor-section::after {
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 72%);
}

.doctor-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.doctor-intro {
  max-width: 920px;
  margin-bottom: 34px;
  color: var(--white);
}

.doctor-section .eyebrow {
  color: var(--yellow);
}

.doctor-intro h2 {
  max-width: 920px;
  white-space: nowrap;
}

.doctor-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.doctors-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.doctor-card {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.doctor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%);
}

.doctor-card > * {
  position: relative;
}

.featured-doctor {
  background: rgba(255, 255, 255, 0.13);
}

.doctor-profile-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
}

.doctor-portrait {
  position: relative;
  min-height: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.doctor-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(16, 43, 86, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

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

.doctor-profile-copy {
  align-self: center;
}

.doctor-card-top {
  display: grid;
  margin-bottom: 24px;
}

.doctor-card h3 {
  margin-bottom: 6px;
  font-size: 3.4rem;
  line-height: 0.95;
}

.doctor-credentials {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.doctor-card p:not(.eyebrow):not(.doctor-credentials) {
  color: rgba(255, 255, 255, 0.76);
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.doctor-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.hours-list {
  margin: 28px 0 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    animation: none;
  }

  .hero-slide:not(:first-child) {
    display: none;
  }
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  font-weight: 600;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
  line-height: 1.45;
}

.visit-details {
  min-width: 0;
}

.visit-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.visit-info-grid h3,
.visit-details > h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.visit-info-grid address {
  margin: 0 0 6px;
}

.visit-info-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.visit-info-grid a {
  color: var(--ink);
  font-weight: 560;
  text-decoration: none;
}

.visit-info-grid a:hover {
  color: var(--yellow-deep);
}

.visit-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d5dfec;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  border: 0;
}

.visit-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(247, 182, 18, 0.14), transparent 27rem),
    radial-gradient(circle at 88% 18%, rgba(32, 63, 115, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--blue-pale), #ffffff 46%, var(--blue-soft));
}

.visit-hero-page {
  position: relative;
  min-height: clamp(520px, calc(74svh - 76px), 720px);
  display: grid;
  align-items: end;
  padding: clamp(84px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(44px, 7vw, 92px);
  color: var(--white);
  background: var(--ink-deep);
  overflow: hidden;
}

.visit-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 52, 95, 0.9) 0%, rgba(24, 52, 95, 0.72) 38%, rgba(24, 52, 95, 0.22) 100%),
    url("assets/hero-slides/hero-slide-13-clinic-interior.jpg") center 46% / cover no-repeat;
}

.visit-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.visit-hero-copy .eyebrow {
  color: var(--yellow);
}

.visit-hero-copy h1 {
  max-width: 800px;
  color: var(--white);
}

.visit-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.storefront-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.storefront-photo {
  overflow: hidden;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.storefront-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
}

.storefront-copy {
  max-width: 560px;
}

.storefront-copy h2 {
  max-width: 520px;
}

.arrival-cues {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.arrival-cues li {
  position: relative;
  padding: 12px 14px 12px 42px;
  color: var(--ink);
  font-weight: 800;
  background: var(--blue-pale);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.arrival-cues li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 999px;
  transform: translateY(-50%);
}

.visit-page-location {
  scroll-margin-top: 150px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

address {
  margin-top: 26px;
  font-style: normal;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--blue-pale);
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(247, 182, 18, 0.28);
  border-color: var(--yellow);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--ink-deep);
  font-weight: 700;
}

.site-footer {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 72px) 0;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 8% 0%, rgba(247, 182, 18, 0.14), transparent 20rem),
    linear-gradient(135deg, var(--ink), var(--ink-deep));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
  padding-bottom: clamp(38px, 6vw, 64px);
}

.footer-brand {
  max-width: 760px;
}

.footer-logo {
  margin-bottom: 22px;
}

.footer-brand-logo {
  width: clamp(190px, 17vw, 224px);
}

.footer-brand p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 16px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 560;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.services-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(247, 182, 18, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(32, 63, 115, 0.13), transparent 32rem),
    linear-gradient(180deg, var(--blue-pale), #ffffff 42%, var(--blue-soft));
}

.services-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 4px;
  background: transparent;
  pointer-events: none;
}

.services-progress span {
  display: block;
  width: calc(var(--services-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), #ffcf4a, var(--ink));
  box-shadow: 0 0 18px rgba(247, 182, 18, 0.5);
}

.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  min-height: clamp(560px, calc(78svh - 76px), 760px);
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(40px, 7vw, 92px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 24%, rgba(247, 182, 18, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(24, 52, 95, 0.98), rgba(15, 39, 77, 0.92));
  overflow: hidden;
}

.services-hero::after,
.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 70%);
  animation: service-grid-drift 18s linear infinite;
}

.services-hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(90deg, var(--ink-deep), transparent 72%),
    url("../assets/hero-slides/hero-slide-05.jpg") center right / cover no-repeat;
  filter: saturate(0.85);
}

.services-hero-content,
.services-hero-panel {
  position: relative;
  z-index: 1;
}

.services-hero .eyebrow,
.services-cta .eyebrow {
  color: var(--yellow);
}

.services-hero h1 {
  max-width: 900px;
  color: var(--white);
}

.services-hero p:not(.eyebrow),
.services-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.services-hero-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.services-hero-panel span {
  display: block;
  color: var(--yellow);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
}

.services-hero-panel strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--white);
  font-size: 1.25rem;
}

.services-hero-panel p {
  margin-bottom: 0;
}

.service-jump {
  position: sticky;
  top: 76px;
  z-index: 9;
  display: flex;
  gap: 10px;
  padding: 14px clamp(20px, 5vw, 72px);
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.service-jump a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.service-jump a:hover {
  color: var(--ink-deep);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.service-showcase {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(54px, 8vw, 94px) clamp(20px, 5vw, 72px);
}

.service-feature {
  position: relative;
  scroll-margin-top: 148px;
  display: grid;
  grid-template-columns: 88px minmax(240px, 0.76fr) minmax(320px, 1.24fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: start;
  padding: clamp(24px, 4vw, 46px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(247, 182, 18, 0.18), transparent 20rem),
    linear-gradient(135deg, var(--ink-deep), #102b56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(32, 63, 115, 0.16);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 182, 18, 0.44);
  box-shadow: 0 34px 96px rgba(32, 63, 115, 0.22);
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.14) 46%, transparent 62%),
    radial-gradient(circle at 78% 18%, rgba(247, 182, 18, 0.14), transparent 18rem);
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-feature:hover::before {
  opacity: 1;
}

.service-feature.accent {
  background:
    radial-gradient(circle at 86% 20%, rgba(247, 182, 18, 0.3), transparent 20rem),
    linear-gradient(135deg, #ffffff, #f7fbff);
  color: var(--ink);
  border-color: var(--line);
}

.service-feature.accent::after {
  background-image:
    linear-gradient(rgba(32, 63, 115, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 63, 115, 0.055) 1px, transparent 1px);
}

.service-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--ink-deep);
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  animation: service-number-pulse 3.8s ease-in-out infinite;
}

.service-feature-copy,
.service-list {
  position: relative;
  z-index: 1;
}

.service-feature-copy .eyebrow {
  color: var(--yellow);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.service-feature.accent .service-feature-copy .eyebrow {
  color: var(--ink);
}

.service-feature h2 {
  margin-bottom: 14px;
  color: currentColor;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
}

.service-feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.03rem;
}

.service-feature.accent .service-feature-copy p:not(.eyebrow) {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transform: translateX(0);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.service-feature:hover .service-list li {
  border-bottom-color: rgba(247, 182, 18, 0.26);
}

.service-list li:hover {
  transform: translateX(8px);
  color: var(--white);
}

.service-feature.accent .service-list li {
  color: #27364c;
  border-bottom-color: rgba(32, 63, 115, 0.1);
}

.service-feature.accent .service-list li:hover {
  color: var(--ink);
}

.service-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(247, 182, 18, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-list li:hover::before {
  transform: scale(1.25);
  box-shadow: 0 0 0 8px rgba(247, 182, 18, 0.18);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 96px);
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 182, 18, 0.24), transparent 22rem),
    var(--ink-deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services-cta h2 {
  max-width: 1120px;
  white-space: nowrap;
}

.services-cta p:not(.eyebrow) {
  max-width: none;
  white-space: nowrap;
}

.services-cta .button {
  flex: 0 0 auto;
  min-width: 148px;
  white-space: nowrap;
}

@keyframes service-grid-drift {
  to {
    background-position: 42px 42px;
  }
}

@keyframes service-number-pulse {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.16),
      0 0 0 0 rgba(247, 182, 18, 0.28);
  }

  50% {
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.18),
      0 0 0 14px rgba(247, 182, 18, 0);
  }
}

.doctor-profile-link {
  margin-top: 26px;
}

.patient-reviews-section {
  scroll-margin-top: 120px;
  background: #f6f9fd;
}

.patient-reviews-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.patient-reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.patient-reviews-heading h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.reviews-summary {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 1.04rem;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.review-scroll-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(32, 63, 115, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.review-scroll-button:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 182, 18, 0.78);
  box-shadow: 0 18px 38px rgba(32, 63, 115, 0.14);
}

.reviews-track {
  display: grid;
  grid-auto-columns: minmax(320px, calc((100% - 40px) / 3));
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 30px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(32, 63, 115, 0.06);
  scroll-snap-align: start;
}

.review-stars {
  color: var(--yellow-deep);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 22px 0 24px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.review-card footer {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card a {
  color: inherit;
  text-decoration: none;
}

.review-card a:hover {
  color: var(--ink);
}

.review-source-note {
  color: #8a9ab2;
}

.loading-review {
  min-width: min(100%, 360px);
}

.doctor-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(247, 182, 18, 0.14), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(32, 63, 115, 0.14), transparent 32rem),
    linear-gradient(180deg, #f8fbff, var(--blue-soft) 54%, #ffffff);
}

.doctor-hero-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: clamp(560px, calc(66svh - 76px), 760px);
  padding: clamp(44px, 6vw, 78px) clamp(20px, 5vw, 72px) 8px;
  overflow: hidden;
}

.doctor-hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(32, 63, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 63, 115, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 36%, rgba(0, 0, 0, 0.78), transparent 72%);
}

.doctor-hero-page::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 8%;
  width: 46vw;
  max-width: 660px;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(4px);
}

.doctor-hero-copy,
.doctor-hero-visual {
  position: relative;
  z-index: 1;
}

.doctor-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(3.3rem, 7vw, 5.2rem);
}

.doctor-hero-subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
}

.doctor-hero-visual {
  min-height: clamp(560px, 42vw, 660px);
}

.doctor-hero-photo {
  position: absolute;
  top: 34px;
  right: 44px;
  width: min(88%, 440px);
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--yellow);
  border: 1px solid rgba(32, 63, 115, 0.12);
  border-radius: 8px;
  box-shadow:
    0 34px 90px rgba(32, 63, 115, 0.28),
    0 0 0 12px rgba(255, 255, 255, 0.62);
  transform: rotate(1.2deg);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.doctor-hero-photo:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow:
    0 44px 110px rgba(32, 63, 115, 0.34),
    0 0 0 12px rgba(255, 255, 255, 0.78);
}

.doctor-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 14%;
}

.doctor-orbit {
  position: absolute;
  border: 1px solid rgba(32, 63, 115, 0.18);
  border-radius: 50%;
  animation: doctor-orbit 16s linear infinite;
}

.orbit-one {
  inset: 0 12px 40px 12px;
}

.orbit-two {
  inset: 84px -18px 112px -18px;
  border-color: rgba(247, 182, 18, 0.48);
  animation-duration: 22s;
  animation-direction: reverse;
}

.doctor-orbit::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 18%;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(247, 182, 18, 0.16);
}

@keyframes doctor-orbit {
  to {
    transform: rotate(360deg);
  }
}

.doctor-floating-card {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 63, 115, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(32, 63, 115, 0.18);
  backdrop-filter: blur(18px);
}

.doctor-floating-card span {
  display: block;
  color: var(--yellow-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doctor-floating-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  line-height: 1.2;
}

.card-top {
  top: 78px;
  right: 0;
}

.card-bottom {
  left: 0;
  bottom: 42px;
}

.doctor-story-section,
.doctor-timeline-section,
.doctor-focus-section,
.doctor-life-section {
  padding-inline: clamp(20px, 5vw, 72px);
}

.doctor-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding-block: 20px clamp(72px, 10vw, 112px);
}

.doctor-story-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.doctor-stats-grid {
  display: grid;
  gap: 16px;
}

.doctor-stats-grid article,
.doctor-focus-section article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(32, 63, 115, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.doctor-stats-grid article:hover,
.doctor-focus-section article:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 182, 18, 0.7);
  box-shadow: 0 22px 68px rgba(32, 63, 115, 0.16);
}

.doctor-stats-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
}

.doctor-stats-grid p,
.doctor-focus-section p,
.doctor-life-section p {
  color: var(--muted);
}

.doctor-timeline-section {
  padding-block: clamp(72px, 9vw, 112px);
  background:
    radial-gradient(circle at 86% 24%, rgba(247, 182, 18, 0.18), transparent 26rem),
    var(--white);
}

.doctor-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.doctor-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 32px;
  width: 2px;
  background: linear-gradient(var(--yellow), rgba(32, 63, 115, 0.12));
}

.doctor-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.doctor-timeline article span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--ink-deep);
  font-weight: 900;
  background: var(--yellow);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(32, 63, 115, 0.14);
}

.doctor-timeline article div {
  padding: 24px;
  background: var(--blue-pale);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.doctor-timeline article:hover div {
  transform: translateX(6px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.doctor-timeline h3 {
  color: var(--ink);
}

.doctor-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.doctor-focus-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-block: clamp(70px, 8vw, 104px);
}

.doctor-life-section,
.doctor-profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 96px);
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(247, 182, 18, 0.24), transparent 22rem),
    var(--ink-deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.doctor-life-section .eyebrow,
.doctor-profile-cta .eyebrow {
  color: var(--yellow);
}

.doctor-life-section p,
.doctor-profile-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 25;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  text-decoration: none;
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.36);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 56px rgba(37, 211, 102, 0.46);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.22);
}

@media (max-width: 980px) {
  .top-contact-bar {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-contact-bar::-webkit-scrollbar {
    display: none;
  }

  .feature-grid,
  .services-grid,
  .info-strip,
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-track {
    grid-auto-columns: minmax(310px, calc((100% - 20px) / 2));
  }

  .feature-grid,
  .services-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .about-section,
  .visit-section,
  .storefront-section,
  .visit-page-location,
  .contact-section,
  .doctors-grid,
  .doctor-profile-layout {
    grid-template-columns: 1fr;
  }

  .about-image-panel {
    min-height: 360px;
  }

  .doctor-portrait {
    min-height: 460px;
  }

  .info-strip {
    margin-top: 0;
  }

  .services-hero,
  .service-feature,
  .services-cta,
  .doctor-hero-page,
  .doctor-story-section,
  .doctor-focus-section {
    grid-template-columns: 1fr;
  }

  .services-cta,
  .doctor-life-section,
  .doctor-profile-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-shell {
    grid-template-columns: 1fr;
  }

  .scheme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurance-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-hero-visual {
    min-height: 640px;
  }

  .doctor-intro h2,
  .services-cta h2,
  .services-cta p:not(.eyebrow) {
    white-space: normal;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .top-contact-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-block: 8px;
    font-size: 0.82rem;
  }

  .language-select {
    margin-left: 0;
  }

  .top-contact-bar a {
    white-space: normal;
  }

  .language-select {
    width: 100%;
    justify-content: space-between;
    padding-left: 0;
  }

  .language-select select {
    min-width: 148px;
  }

  .section {
    padding: 34px 18px;
  }

  .patient-reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
  }

  .reviews-track {
    grid-auto-columns: minmax(286px, 86%);
    gap: 12px;
    padding-bottom: 8px;
  }

  .review-controls {
    display: none;
  }

  .review-card {
    min-height: 292px;
    padding: 20px 18px;
  }

  .review-card blockquote {
    display: -webkit-box;
    margin: 16px 0 18px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .scheme-grid,
  .insurance-panel-grid {
    grid-template-columns: 1fr;
  }

  .trust-section {
    padding-block: 28px;
  }

  .trust-label {
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .logo-strip-card {
    padding: 8px;
    overflow: hidden;
  }

  .accreditation-logo-strip {
    overflow-x: visible;
  }

  .accreditation-logo-strip img {
    min-width: 0;
    width: 100%;
  }

  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 46px 18px 44px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(245, 248, 252, 0.94) 0%, rgba(245, 248, 252, 0.86) 55%, rgba(245, 248, 252, 0.98) 100%),
      url("assets/hero-slides/hero-slide-11.jpg") center / cover no-repeat;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2.1rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  h2 {
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 9vw, 2.55rem);
    line-height: 1.08;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
  }

  .hero p:not(.eyebrow),
  .about-copy-panel p:not(.eyebrow),
  .doctor-intro p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .info-strip article {
    padding: 16px 18px;
  }

  .about-image-panel {
    min-height: 220px;
  }

  .about-copy-panel > p:nth-of-type(n + 3) {
    display: none;
  }

  .services-preview-heading {
    margin-bottom: 0;
  }

  .services-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .service-preview-card {
    min-height: 116px;
    padding: 14px 10px;
  }

  .service-line-icon {
    width: 34px;
    height: 34px;
  }

  .service-preview-card h3 {
    max-width: 130px;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.15;
  }

  .services-preview-action {
    margin-top: 24px;
  }

  .doctor-section {
    padding: 34px 18px;
  }

  .doctor-intro {
    margin-bottom: 22px;
  }

  .doctor-intro p:not(.eyebrow) {
    display: none;
  }

  .doctor-card {
    padding: 18px;
  }

  .doctor-portrait {
    height: 300px;
    min-height: 0;
  }

  .doctor-portrait img {
    height: calc(100% + 34px);
    object-position: center top;
    transform: translateY(-22px);
  }

  .doctor-card h3 {
    font-size: 2.55rem;
  }

  .doctor-profile-copy > p:nth-of-type(n + 2) {
    display: none;
  }

  .doctor-profile-copy > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }

  .doctor-tags {
    gap: 7px;
    margin-top: 18px;
  }

  .doctor-tags span {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .doctor-profile-link {
    margin-top: 18px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-list dd {
    text-align: left;
  }

  .visit-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .map-card,
  .map-card iframe {
    min-height: 280px;
  }

  .contact-section {
    padding: 34px 18px;
  }

  textarea {
    min-height: 112px;
  }

  .site-footer {
    flex-direction: column;
  }

  .service-jump {
    top: 68px;
  }

  .services-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .services-hero-panel {
    display: none;
  }

  .service-showcase {
    gap: 16px;
    padding: 28px 18px;
  }

  .visit-hero-page {
    min-height: auto;
    padding-top: 64px;
  }

  .service-feature {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .service-number {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .service-feature-copy {
    align-self: center;
  }

  .service-feature-copy .eyebrow,
  .service-feature-copy p:not(.eyebrow) {
    display: none;
  }

  .service-feature h2 {
    margin-bottom: 0;
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .service-list {
    grid-column: 1 / -1;
    gap: 4px;
  }

  .service-list li {
    min-height: 38px;
    padding: 8px 0;
    font-size: 0.94rem;
    line-height: 1.32;
  }

  .service-list li:hover {
    transform: none;
  }

  .service-list li::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(247, 182, 18, 0.16);
  }

  .doctor-hero-page {
    min-height: auto;
  }

  .doctor-hero-visual {
    min-height: 460px;
  }

  .doctor-hero-photo {
    top: 26px;
    right: 28px;
    width: min(82%, 500px);
  }

  .doctor-floating-card {
    max-width: 220px;
  }
}

@media (max-width: 440px) {
  .brand-logo {
    width: 168px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-hero-actions .button,
  .services-cta .button,
  .doctor-life-section .button,
  .doctor-profile-cta .button {
    width: 100%;
  }

  .services-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .doctor-card-top {
    grid-template-columns: 1fr;
  }

  .doctor-card h3 {
    font-size: 2.4rem;
  }

  .doctor-portrait {
    height: 260px;
    min-height: 0;
  }

  .doctor-portrait img {
    height: calc(100% + 44px);
    object-position: center top;
    transform: translateY(-30px);
  }

  .doctor-hero-visual {
    min-height: 460px;
  }

  .doctor-floating-card {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 10px;
  }

  .doctor-hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    height: 390px;
    aspect-ratio: auto;
    transform: none;
  }

  .doctor-orbit {
    display: none;
  }

  .doctor-timeline::before {
    left: 24px;
  }

  .doctor-timeline article {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .doctor-timeline article span {
    width: 50px;
    height: 50px;
    border-width: 6px;
  }
}
