:root {
  --sky: #00a0e4;
  --sky-dark: #0086c4;
  --navy: #163a58;
  --navy-soft: #1d4e73;
  --ink: #243240;
  --muted: #5c6d7a;
  --line: #e6e4df;
  --ice: #f3f2ef;
  --cream: #f7f6f3;
  --white: #ffffff;
  --gold: #d4a017;
  --shadow: 0 16px 40px rgba(20, 28, 36, 0.08);
  --radius: 18px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.service-copy b a,
.lead b a,
.body-copy b a,
p b a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(36, 50, 64, 0.35);
  text-underline-offset: 3px;
}

.service-copy b a:hover,
.lead b a:hover,
.body-copy b a:hover,
p b a:hover {
  color: var(--navy);
  text-decoration-color: var(--navy);
}

.page-hero p b a,
.slide-copy b a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.page-hero p b a:hover,
.slide-copy b a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

@media (max-width: 760px) {
  .header-book {
    display: none;
  }

  .page-hero p,
  .lead {
    font-size: 15px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .service-hero-img {
    height: 200px;
  }

  .page-hero {
    padding: 64px 0 48px;
  }
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--sky);
}

.eyebrow.light {
  color: #9ee4ff;
}

.eyebrow.light::before {
  background: #9ee4ff;
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.18;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-title {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--navy);
  margin: 12px 0 16px;
}

.section-title.light {
  color: #fff;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: none;
  width: 100%;
  margin: 0 0 22px;
}

.body-copy {
  color: var(--muted);
  margin: 16px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.btn-primary {
  background: #163a58;
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 58, 88, 0.28);
}

.btn-primary:hover {
  background: #102a40;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: #fff;
}

.inline-phone {
  color: var(--sky-dark);
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #0a2744 0%, #12385c 58%, #0d3a52 100%);
  color: #fff;
  padding: 92px 0 78px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 39, 68, 0.55), rgba(0, 160, 228, 0.18));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 10px 0 8px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: none;
  width: 100%;
  font-size: 17px;
  line-height: 1.7;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: #d8e2ef;
  font-size: 13px;
}

.topbar-inner,
.top-links,
.top-right,
.top-social {
  display: flex;
  align-items: center;
}

.topbar-inner {
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.top-links,
.top-right,
.top-social {
  gap: 18px;
}

.topbar a:hover {
  color: #fff;
}

.top-links a,
.top-links span,
.top-hours {
  white-space: nowrap;
}

.top-links i,
.top-hours i {
  margin-right: 7px;
  color: var(--sky);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a,
.top-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.social-links a.fb,
.top-social a.fb {
  background: #1877f2;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.footer-social {
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  font-size: 15px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 160, 228, 0.1);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  height: 70px;
  width: auto;
  max-width: min(280px, 62vw);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav > a,
.nav-item > a {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0;
  white-space: nowrap;
}

.nav > a i,
.nav-item > a i {
  font-size: 11px;
}

.nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: 0.25s ease;
}

.nav > a:hover::after,
.nav > a.active::after,
.nav-item:hover > a::after,
.nav-item > a.active::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 50;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.dropdown a:hover {
  background: var(--ice);
  color: var(--sky-dark);
}

.mega-item {
  position: static;
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 18, 32, 0.35);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 50;
  border-top: 3px solid var(--sky);
}

.mega-item:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mega-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px 8px;
  color: #fff;
}

.mega-head small {
  color: #9ee4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-head strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  margin-top: 4px;
}

.mega-head p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 22px 22px;
}

.mega-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.mega-grid a i {
  width: 28px;
  color: var(--sky);
}

.mega-grid a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #9ee4ff;
}

.nav > a.nav-book {
  display: none;
}

.header-book {
  margin-left: auto;
}

.menu-btn {
  display: none;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid #bfe8f7;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  margin: 0 auto;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  transition: 0.2s ease;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  overflow: hidden;
  background: #e8e6e1;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.22) 46%, rgba(0, 0, 0, 0.04) 100%);
}

.slide-copy {
  position: absolute;
  z-index: 2;
  left: max(20px, calc((100% - var(--container)) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, calc(100% - 40px));
  color: #fff;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.slide-copy h1 {
  font-size: clamp(36px, 6vw, 68px);
  margin: 10px 0 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.slide-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-bottom: 24px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.slide-copy .eyebrow,
.slide-copy .eyebrow.light {
  color: #fff;
}

.slide-copy .eyebrow::before,
.slide-copy .eyebrow.light::before {
  background: #fff;
}

.slide-copy .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.slide-copy .btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

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

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 70, 96, 0.14);
}

.arrow.prev {
  left: 18px;
}

.arrow.next {
  right: 18px;
}

.arrow:hover {
  background: var(--sky);
}

.slider-nav {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-nav .dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 58, 88, 0.25);
  cursor: pointer;
}

.slider-nav .dot.active {
  background: var(--sky);
  width: 28px;
  border-radius: 999px;
}

.hero.is-dragging {
  cursor: grabbing;
}

/* Quick services */
.quick {
  margin-top: -42px;
  position: relative;
  z-index: 4;
  padding-bottom: 10px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.quick-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.quick-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  object-position: center;
}

.kids-shot {
  object-fit: cover;
  object-position: 48% 28%;
}

.quick-card img.kids-shot {
  object-position: 48% 28%;
}

.quick-card span {
  display: block;
  padding: 12px 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.quick-card:hover span {
  color: var(--sky-dark);
}

/* Stats */
.stats {
  padding: 28px 0 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--navy);
}

.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: var(--navy);
}

.stat em {
  font-style: normal;
  color: #3d5a6c;
  font-size: 13px;
  font-weight: 600;
}

/* Welcome */
.welcome-grid,
.kids-grid,
.reviews-grid,
.awards-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.awards-grid {
  align-items: center;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
}

.welcome-visual,
.kids-photo,
.awards-photo {
  position: relative;
}

.welcome-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: left center;
  border-radius: 24px;
}

.kids-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 160, 228, 0.16);
}

.awards-photo {
  background: var(--ice);
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.awards-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  background: var(--ice);
  display: block;
}

.quote-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(16, 70, 96, 0.12);
}

.quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
}

.check-list {
  list-style: none;
  margin: 0 0 22px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--sky);
}

.hours-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 24px;
}

.hours-card div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.hours-card small {
  display: block;
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.hours-card span {
  color: var(--muted);
  font-size: 13px;
}

/* Kids */
.kids-band {
  background: #efece6;
  color: var(--navy);
}

.kids-band p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.kids-band .section-title.light {
  color: var(--navy);
}

.kids-band .eyebrow.light {
  color: var(--sky-dark);
}

.kids-band .eyebrow.light::before {
  background: var(--sky);
}

.kids-photo img {
  height: 400px;
  object-fit: cover;
  object-position: 50% 38%;
}

/* Facilities */
.facilities {
  background: #fff;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.facility-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: var(--shadow);
}

.facility-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.facility-card img.kids-shot {
  object-position: 48% 28%;
}

.facility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(12, 70, 96, 0.88));
}

.facility-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}

.facility-copy small {
  color: #9ee4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facility-copy h3 {
  font-size: 22px;
  margin-top: 4px;
}

.facility-card:hover img {
  transform: scale(1.06);
}

/* Cases */
.cases-home {
  background: var(--ice);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 32px;
}

.cases-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  scroll-snap-align: start;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10, 39, 68, 0.06);
}

.case-shot {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
}

.case-shot img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.case-shot span {
  display: inline-block;
  margin-top: 8px;
  background: #6b7c89;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.case-shot span.after {
  background: var(--sky);
}

.fac-results {
  background: #fff;
  padding-top: 20px;
}

.fac-cases-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.fac-cases-grid .case-shot img {
  height: 200px;
  object-fit: contain;
  background: var(--ice);
}

.fac-cases-grid .case-pair,
.fac-cases-grid .case-triple {
  scroll-snap-align: unset;
}

.case-triple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10, 39, 68, 0.06);
}

.case-label {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  padding: 2px 4px 6px;
}

.case-shot span.mid {
  background: #1d4e73;
}

@media (max-width: 760px) {
  .case-triple {
    grid-template-columns: 1fr;
  }
}

/* Doctors */
.doctors {
  background: #fff;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--ice);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doctor-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 89% 12%;
}

.doctor-info {
  padding: 28px 26px;
}

.doctor-info h3 {
  font-size: 30px;
  color: var(--navy);
}

.doctor-info .role {
  color: var(--sky-dark);
  font-size: 13px;
  font-weight: 700;
  margin: 6px 0 12px;
}

.doctor-info p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* Reviews */
.reviews {
  background: var(--ice);
}

.review-slider {
  position: relative;
  min-height: 220px;
  margin: 22px 0 14px;
}

.review-card {
  display: none;
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.review-card.active {
  display: block;
}

.stars {
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--ink);
  font-size: 17px;
}

.review-card footer {
  margin-top: 16px;
}

.review-card strong {
  display: block;
  color: var(--navy);
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
}

.review-dots {
  display: flex;
  gap: 8px;
  margin: 0 0 20px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #c5d5df;
  cursor: pointer;
}

.review-dots button.active {
  background: var(--sky);
  width: 24px;
  border-radius: 999px;
}

.campaign-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.campaign-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.campaign-card div {
  padding: 22px;
}

.campaign-card h3 {
  font-size: 30px;
  color: var(--navy);
  margin: 6px 0 10px;
}

.campaign-card p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 18px;
}

/* Awards */
.awards-home {
  background: #fff;
}

/* CTA */
.cta {
  background: #1a3348;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 10px 0 14px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 24px;
}

.cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta .btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.cta .eyebrow.light {
  color: #c9d6e0;
}

.cta .eyebrow.light::before {
  background: var(--sky);
}

.cta .hero-actions {
  justify-content: center;
}

/* Footer */
.footer {
  background: #071b2e;
  color: #c9d6e2;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1.15fr;
  gap: 36px;
}

.footer .logo img {
  height: 68px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
}

.footer p {
  margin-top: 16px;
  font-size: 14px;
}

.footer h4 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin: 8px 0;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #c9d6e2;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-links i,
.footer-contact i {
  color: var(--sky);
  margin-right: 8px;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.nabh {
  width: 72px;
  margin-top: 18px;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-bottom a {
  color: #9ee4ff;
}

/* Float + mobile act */
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 30;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.mobile-act {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 24, 0.92);
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 40px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 82vh;
  border-radius: 16px;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.lb-close {
  top: 20px;
  right: 20px;
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav,
  .header-book {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a4e6e 0%, #123a54 100%);
    padding: 12px 14px 22px;
    border-bottom: 3px solid var(--sky);
    align-items: stretch;
    max-height: calc(100vh - 120px);
    overflow: auto;
    gap: 6px;
    z-index: 45;
    box-shadow: 0 28px 50px rgba(10, 40, 60, 0.28);
  }

  .nav > a,
  .nav-item > a {
    padding: 13px 14px;
    width: 100%;
    justify-content: space-between;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin: 0;
  }

  .nav > a:hover,
  .nav-item > a:hover,
  .nav > a.active,
  .nav-item.open > a {
    background: rgba(0, 160, 228, 0.28);
    color: #fff;
  }

  .nav > a::after,
  .nav-item > a::after {
    display: none;
  }

  .dropdown,
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    background: transparent;
    border-top: 0;
  }

  .nav-item.open .dropdown,
  .nav-item.open .mega {
    display: block;
    padding: 6px 0 4px;
  }

  .dropdown a,
  .mega-grid a {
    color: #d8eef8;
    background: rgba(255, 255, 255, 0.05);
    margin: 4px 0;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .mega-head {
    display: none;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .nav > a.nav-book,
  .nav > a.nav-book:hover {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
    background: #163a58;
    color: #fff;
    border: 0;
    justify-content: center;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .menu-btn.open {
    background: var(--sky);
    border-color: var(--sky);
  }

  .menu-btn.open span {
    background: transparent;
  }

  .menu-btn.open span::before {
    top: 0;
    background: #fff;
    transform: rotate(45deg);
  }

  .menu-btn.open span::after {
    top: 0;
    background: #fff;
    transform: rotate(-45deg);
  }

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

  .welcome-grid,
  .kids-grid,
  .reviews-grid,
  .awards-grid,
  .doctor-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 760px) {
  .top-hours,
  .top-links span:last-child {
    display: none;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

  .slides {
    position: relative;
    height: auto;
  }

  .slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
  }

  .slide.active {
    display: block;
  }

  .slide img {
    height: 240px;
    object-fit: cover;
    object-position: center 20%;
  }

  .slide-doctors img {
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: #111;
  }

  .slide-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 20px 20px 52px !important;
    background: #12283c !important;
  }

  .slide-copy h1 {
    font-size: 30px;
    text-shadow: none;
  }

  .slider-nav .dot {
    background: rgba(255, 255, 255, 0.35);
  }

  .logo img {
    height: 58px;
  }

  .arrow {
    display: none;
  }

  .quick {
    margin-top: 18px;
  }

  .quick-grid,
  .stats-grid,
  .facility-grid,
  .hours-card {
    grid-template-columns: 1fr 1fr;
  }

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

  .doctor-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: 89% 12%;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

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

  .whatsapp {
    display: none;
  }

  .mobile-act {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 32;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(10, 39, 68, 0.12);
  }

  .mobile-act a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 8px;
    font-weight: 800;
  }

  .mobile-act-call {
    color: var(--navy);
  }

  .mobile-act-wa {
    color: #128c7e;
  }

  .mobile-act-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
  }

  .mobile-act-call .mobile-act-ico {
    background: var(--sky);
  }

  .mobile-act-wa .mobile-act-ico {
    background: #25d366;
  }

  .mobile-act-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }

  .mobile-act-txt small {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
  }

  .mobile-act-split {
    width: 1px;
    background: var(--line);
    margin: 10px 0;
  }

  body {
    padding-bottom: 68px;
  }
}

@media (max-width: 520px) {
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .welcome-visual img,
  .kids-photo img {
    height: 280px;
  }

  .awards-photo img {
    height: auto;
    object-fit: contain;
  }

  .facility-card,
  .facility-card img {
    min-height: 200px;
    height: 200px;
  }
}

/* Inner pages */
.page-hero .eyebrow.light {
  color: #9ee4ff;
}

.service-wrap,
.team-wrap,
.contact-wrap,
.gallery-wrap {
  padding: 72px 0 90px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.service-main {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  margin: 8px 0 22px;
}

.service-copy {
  color: var(--muted);
  margin: 16px 0 10px;
  font-size: 15.5px;
}

.care-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 8px;
}

.care-strip article {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 12px;
}

.care-strip small {
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.care-strip p {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
}

.service-block {
  margin-top: 30px;
}

.block-head small {
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.block-head h3 {
  font-size: 30px;
  color: var(--navy);
  margin: 4px 0 0;
}

.age-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.age-card {
  display: flex;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}

.age-card.age-wide {
  grid-column: 1 / -1;
}

.age-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 160, 228, 0.12);
  color: var(--sky-dark);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.age-card small {
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.age-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin: 2px 0 6px;
}

.age-card p {
  color: var(--muted);
  font-size: 13.5px;
}

.service-book {
  position: sticky;
  top: 18px;
  background: linear-gradient(180deg, #e8f8fc 0%, #d4f0fa 100%);
  color: var(--navy);
  border-radius: 24px;
  padding: 26px 22px 22px;
  border: 1px solid #b5e0f0;
  box-shadow: var(--shadow);
}

.service-book h3 {
  font-size: 30px;
  margin: 8px 0 8px;
}

.service-book p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.service-book .book-doc {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
}

.service-book .book-doc small {
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-book .book-doc h4 {
  font-size: 18px;
  margin: 4px 0;
}

.service-book .book-doc p {
  margin: 0 0 8px;
  font-size: 13px;
}

.related-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.related-links a:hover {
  border-color: var(--sky);
  color: var(--sky-dark);
}

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-full,
.whatsapp-btn {
  width: 100%;
  margin-top: 10px;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.service-book .btn-line {
  width: 100%;
  margin-top: 10px;
}

.team-group,
.team-duo,
.doc-card {
  min-width: 0;
  max-width: 100%;
}

.team-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.team-consult {
  margin-top: 48px;
}

.doc-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.doc-photo {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #d9eef6;
}

.doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 89% 12%;
}

.doc-photo.christy img,
.doc-photo.abhinav img {
  object-position: center 12%;
}

.doc-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(10, 39, 68, 0.92));
  color: #fff;
  text-align: center;
}

.doc-overlay h2 {
  font-size: 34px;
  margin-bottom: 4px;
}

.doc-overlay p {
  color: #9ee4ff;
  font-size: 13px;
  font-weight: 800;
}

.doc-body {
  padding: 22px 22px 26px;
  text-align: center;
  background: var(--ice);
}

.qual-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.qual-list span {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
}

.qual-list span.gold {
  background: var(--navy);
  color: #9ee4ff;
  border-color: var(--navy);
}

.view-more {
  border: 0;
  background: #163a58;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
}

.view-more:hover {
  background: #102a40;
}

.view-more i {
  transition: transform 0.4s ease;
}

.doc-card.open .view-more i {
  transform: rotate(180deg);
}

.doc-full {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s ease;
  margin-top: 22px;
}

.doc-full.open {
  grid-template-rows: 1fr;
}

.doc-full-inner {
  overflow: hidden;
  min-height: 0;
  background: linear-gradient(160deg, #163a58, #0d2a42);
  color: #d7e8f2;
  border-radius: 20px;
}

.doc-full.open .doc-full-inner {
  padding: 28px 32px;
}

.doc-full-inner h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}

.doc-full-inner p {
  margin-bottom: 14px;
  line-height: 1.75;
}

.doc-full-inner .btn {
  margin-top: 6px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 18px 18px;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.contact-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
  transition: 0.25s ease;
}

.contact-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 160, 228, 0.12);
  color: var(--sky-dark);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.contact-card.whatsapp-card .contact-ico {
  background: rgba(37, 211, 102, 0.14);
  color: #128c4b;
}

.contact-card small {
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 4px 0 8px;
}

.contact-card p {
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.contact-map {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #eee;
}

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

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-grid button,
.photo-grid a {
  display: block;
  border: 0;
  padding: 0;
  background: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.photo-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-grid button:hover img,
.photo-grid a:hover img {
  transform: scale(1.04);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-grid .review-card {
  display: block;
}

.cases-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 980px) {
  .service-layout,
  .contact-layout,
  .contact-cards,
  .care-strip,
  .age-grid,
  .review-grid,
  .cases-page,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-duo {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .service-main {
    padding: 26px 20px;
  }

  .service-layout,
  .contact-layout,
  .team-duo,
  .contact-cards,
  .care-strip,
  .age-grid,
  .review-grid,
  .cases-page,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    overflow: hidden;
  }

  .top-links a:first-child {
    display: none;
  }

  .page-hero h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .team-wrap {
    padding: 40px 0 70px;
  }

  .doc-photo {
    height: 280px;
  }

  .doc-overlay h2 {
    font-size: 26px;
  }

  .doc-overlay p {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 6px;
  }

  .doc-body {
    padding: 16px 14px 20px;
  }

  .qual-list span {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }

  .doc-full.open .doc-full-inner {
    padding: 18px 16px;
  }

  .doc-full-inner h3 {
    font-size: 24px;
  }

  .service-hero-img,
  .photo-grid img {
    height: 200px;
  }
}

