/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #2A9D9F;
  --teal-dark:   #1E7B7D;
  --teal-deeper: #155F61;
  --teal-light:  #E6F5F5;
  --teal-mid:    #B2DEDE;
  --teal-glow:   rgba(42,157,159,.3);

  --navy:        #0D2B35;
  --navy-mid:    #123040;

  --gray-50:   #F7FAFA;
  --gray-100:  #EEF4F4;
  --gray-200:  #D8E8E8;
  --gray-400:  #7AACAC;
  --gray-500:  #4A7070;
  --gray-600:  #2E5050;
  --gray-800:  #0D2020;
  --white:     #FFFFFF;

  --shadow-sm: 0 2px 10px rgba(42,157,159,.07);
  --shadow-md: 0 6px 28px rgba(42,157,159,.13);
  --shadow-lg: 0 16px 52px rgba(42,157,159,.18);
  --shadow-xl: 0 28px 80px rgba(42,157,159,.2);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --transition: 0.28s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.section--gray { background: var(--gray-50); }
.section--teal {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal-deeper) 100%);
}

/* ── Section header ── */
.section__header { text-align: center; max-width: 680px; margin: 0 auto 72px; }

.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section__label--white {
  color: white;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 18px;
}

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

.section__subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: .02em;
}

.btn--sm  { padding: 9px 22px; font-size: 13px; border-radius: 8px; }
.btn--lg  { padding: 17px 38px; font-size: 16px; border-radius: 12px; }

.btn--primary {
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  box-shadow: 0 4px 18px var(--teal-glow);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42,157,159,.45);
}

.btn--glass {
  padding: 15px 32px;
  background: rgba(255,255,255,.1);
  color: white;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  font-size: 16px;
}
.btn--glass:hover {
  background: rgba(255,255,255,.18);
  border-color: white;
  transform: translateY(-2px);
}

.btn--secondary {
  background: white;
  color: var(--teal);
  border-color: white;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.btn--secondary:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.btn--outline {
  padding: 11px 26px;
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

.btn--white {
  background: white;
  color: var(--teal);
  font-size: 14px;
  padding: 11px 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,157,159,.12);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__left a, .topbar__right span, .topbar__right a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.topbar__left a svg, .topbar__right span svg, .topbar__right a svg { color: var(--teal); }
.topbar__left a:hover, .topbar__right a:hover { color: var(--teal); }

.topbar__social { font-weight: 500; }

.topbar__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color: rgba(255,255,255,.85) !important;
}
.topbar__rating svg { color: #FBBC04 !important; }
.topbar__rating strong { color: #fff; font-weight: 700; }
.topbar__rating:hover { color: #fff !important; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--teal-light);
  box-shadow: 0 2px 16px rgba(42,157,159,.06);
  transition: all var(--transition);
}

/* backdrop on pseudo-element so it doesn't trap fixed children (backdrop-filter bug) */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  z-index: -1;
}

.header.scrolled { box-shadow: 0 4px 32px rgba(42,157,159,.14); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(72px, 10vw, 116px);
  gap: 32px;
  padding: 6px 0;
}

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

.logo__img {
  height: clamp(64px, 9vw, 110px);
  width: auto;
  object-fit: contain;
  margin-left: -4px;
}

.logo__img--footer {
  height: 70px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-left: 0;
}

.nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav__link:hover { color: var(--teal); background: var(--teal-light); }
.nav__link svg { transition: transform var(--transition); }

.nav__item--dropdown { position: relative; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 252px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--teal-light);
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}

.nav__item--dropdown:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item--dropdown:hover .nav__link svg { transform: rotate(180deg); }

.nav__dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-500);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav__dropdown li a:hover { background: var(--teal-light); color: var(--teal); padding-left: 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header__cta {
  flex-shrink: 0;
  font-size: 14px;
  padding: 11px 24px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 110px;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}

.hero__slide:nth-child(1) { background-image: linear-gradient(140deg,#0D2B35,#123040,#155F61); }
.hero__slide:nth-child(2) { background-image: linear-gradient(140deg,#0a2030,#0e3850,#1a6060); }
.hero__slide:nth-child(3) { background-image: linear-gradient(140deg,#0b1f2e,#0f2a40,#124f50); }
.hero__slide:nth-child(4) { background-image: linear-gradient(140deg,#091824,#0d2535,#1b5555); }
.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg,
    rgba(13,43,53,.88) 0%,
    rgba(13,43,53,.65) 50%,
    rgba(13,43,53,.3) 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(42,157,159,.055) 1px, transparent 0);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: flex-end;
  width: 100%;
}

/* Content */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.hero__title em { font-style: italic; color: rgba(255,255,255,.55); }
.hero__title--accent { color: var(--teal); display: block; }

.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 44px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Google review trust box in hero — hidden on desktop, shown on mobile */
.hero__rating {
  display: none;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 11px 18px;
  background: rgba(255,255,255,.95);
  border-radius: 100px;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  width: fit-content;
}
.hero__rating-g { display: flex; flex-shrink: 0; }
.hero__rating-text { display: flex; align-items: center; gap: 6px; }
.hero__rating-text strong { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__rating-stars { color: #FBBC04; font-size: 14px; letter-spacing: 1px; }
.hero__rating-label { font-size: 13px; font-weight: 600; color: var(--gray-500); }

/* Stats sidebar */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 200px;
}

.hero__stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(42,157,159,.22);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.hero__stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  border-radius: 0 2px 2px 0;
}

.hero__stat-card:hover {
  background: rgba(42,157,159,.15);
  border-color: rgba(42,157,159,.4);
  transform: translateX(-4px);
}

.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero__stat-plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-left: 3px;
  align-self: flex-start;
  margin-top: 6px;
}

.hero__stat-label {
  width: 100%;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero__dot.active {
  background: var(--teal);
  width: 30px;
  box-shadow: 0 0 12px rgba(42,157,159,.7);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%,100% { opacity:.6; transform:scaleY(1) translateY(0); }
  50% { opacity:1; transform:scaleY(1.1) translateY(4px); }
}

.hero__scroll-hint span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 6;
}

.hero__wave svg { width: 100%; height: 80px; }

/* ═══════════════════════════════════════════
   QUICK BOOK STRIP
═══════════════════════════════════════════ */
/* ── Quick Book Strip ── */
.quick-book {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 6px 32px rgba(13,43,53,.08);
  position: relative;
  z-index: 10;
}

.quick-book__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.quick-book__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  text-decoration: none;
  color: var(--navy);
  transition: background .2s ease, transform .2s ease;
  position: relative;
}

.quick-book__card:hover { background: var(--gray-50); }
.quick-book__card--teal { background: var(--teal); color: white; }
.quick-book__card--teal:hover { background: var(--teal-dark); }

/* Icon box */
.quick-book__icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.quick-book__card:hover .quick-book__icon-box { transform: scale(1.08); }
.qb-navy { background: var(--navy); color: white; }
.qb-white { background: rgba(255,255,255,.22); color: white; }

/* Text body */
.quick-book__body { flex: 1; min-width: 0; }

.quick-book__tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3px;
}
.quick-book__card--teal .quick-book__tag { color: rgba(255,255,255,.7); }

.quick-book__body h3 {
  font-size: 18px;
  font-weight: 800;
  color: inherit;
  margin: 0 0 2px;
  white-space: nowrap;
}

.quick-book__body p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  white-space: nowrap;
}
.quick-book__card--teal .quick-book__body p { color: rgba(255,255,255,.75); }
.quick-book__body p strong { color: var(--teal-dark); font-weight: 700; }
.quick-book__card--teal .quick-book__body p strong { color: white; font-weight: 800; }

/* CTA pill */
.quick-book__btn-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s ease;
  box-shadow: 0 4px 14px rgba(42,157,159,.3);
}
.quick-book__card:hover .quick-book__btn-cta { background: var(--teal-dark); transform: translateX(3px); }

.quick-book__btn-cta--white {
  background: white;
  color: var(--teal);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.quick-book__card--teal:hover .quick-book__btn-cta--white { background: rgba(255,255,255,.92); transform: translateX(3px); }

/* OR separator */
.quick-book__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  position: relative;
}
.quick-book__sep::before,
.quick-book__sep::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  background: var(--gray-200);
}
.quick-book__sep::before { top: 0; bottom: 50%; margin-bottom: 14px; }
.quick-book__sep::after  { top: 50%; bottom: 0; margin-top: 14px; }
.quick-book__sep span {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 700px) {
  .quick-book__inner {
    grid-template-columns: 1fr;
  }
  .quick-book__card {
    padding: 18px 20px;
    gap: 14px;
  }
  .quick-book__body h3 { font-size: 16px; white-space: normal; }
  .quick-book__body p { white-space: normal; }
  .quick-book__sep {
    width: auto;
    height: 36px;
    flex-direction: row;
  }
  .quick-book__sep::before { top: 50%; bottom: 50%; left: 0; right: 50%; width: auto; height: 1px; margin: 0 14px 0 0; }
  .quick-book__sep::after  { top: 50%; bottom: 50%; left: 50%; right: 0; width: auto; height: 1px; margin: 0 0 0 14px; }
  .quick-book__btn-cta { padding: 8px 14px; font-size: 12px; }
  .quick-book__icon-box { width: 44px; height: 44px; border-radius: 11px; }
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-strip {
  background: var(--teal);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 28px;
}

.marquee-track .sep {
  color: rgba(255,255,255,.4);
  padding: 0;
  font-size: 10px;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about__visual { position: relative; }

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(140deg, var(--teal-light) 0%, var(--teal-mid) 100%);
  aspect-ratio: 4/3.2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.about__img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
}

.about__img-placeholder p { font-size: 20px; font-weight: 700; color: var(--navy); }
.about__img-placeholder span { font-size: 14px; color: var(--teal); font-weight: 500; }

.about__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 45%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  opacity: .12;
  z-index: -1;
}

.about__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--teal-light);
}

.about__floating-card--1 { top: -24px; right: -24px; }
.about__floating-card--2 { bottom: -24px; left: -24px; }

.about__fc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__fc-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.about__floating-card strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.about__floating-card span { font-size: 12px; color: var(--gray-400); }

.about__desc {
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 16px;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}

.about__pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about__pillar-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px var(--teal-glow);
}

.about__pillar strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.about__pillar p { font-size: 14px; color: var(--gray-500); margin: 0; }

/* ═══════════════════════════════════════════
   JOURNEY (Patient Steps)
═══════════════════════════════════════════ */
.journey__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.journey__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(42,157,159,.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.journey__step:hover {
  background: rgba(42,157,159,.14);
  border-color: rgba(42,157,159,.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,157,159,.2);
}

.journey__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--teal);
  background: var(--navy);
  border: 1px solid rgba(42,157,159,.3);
  padding: 4px 14px;
  border-radius: 100px;
}

.journey__icon {
  width: 64px; height: 64px;
  background: rgba(42,157,159,.15);
  border: 1px solid rgba(42,157,159,.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all var(--transition);
}

.journey__step:hover .journey__icon {
  background: var(--teal);
  color: white;
  box-shadow: 0 8px 24px var(--teal-glow);
}

.journey__step h4 { font-size: 17px; font-weight: 700; color: white; }
.journey__step p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

.journey__connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(42,157,159,.4), rgba(42,157,159,.2));
  align-self: center;
  position: relative;
  top: 20px;
}

.journey__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(42,157,159,.4);
  border-right: 2px solid rgba(42,157,159,.4);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════
   DEPARTMENTS
═══════════════════════════════════════════ */
.dept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dept__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.dept__card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-mid);
}

.dept__card--wide { grid-column: span 1; }

/* Icon header */
.dept__card-icon {
  height: 180px;
  padding: 20px;
  flex-shrink: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease);
}

.dept__card:hover .dept__card-icon svg { transform: scale(1.12); }
.dept__card-icon svg { transition: transform .35s var(--ease); }

.dept__card-icon--teal   { background: linear-gradient(135deg, #e6f7f7 0%, #c8eeee 100%); color: var(--teal-dark); }
.dept__card-icon--blue   { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); color: #1d4ed8; }
.dept__card-icon--purple { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); color: #6d28d9; }
.dept__card-icon--orange { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); color: #c2410c; }
.dept__card-icon--green  { background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%); color: #166534; }
.dept__card-icon--red    { background: linear-gradient(135deg, #fff1f2 0%, #fecdd3 100%); color: #be123c; }


/* For image icons */
.dept__card-icon img {
  max-width: 100%;
  max-height: 140px;

  width: auto;
  height: auto;

  object-fit: contain;
  transition: transform .35s var(--ease);
}

.dept__card:hover .dept__card-icon img {
  transform: scale(1.05);
}

/* Card text body */
.dept__card-body {
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--gray-200);
}

.dept__card-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.dept__card-body p { font-size: 14px; color: var(--gray-500); line-height: 1.75; margin-bottom: 20px; flex: 1; }

.dept__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
  letter-spacing: .04em;
}

.dept__link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   WHY
═══════════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why__item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.why__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-mid);
}

.why__icon {
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: 15px;
  border: 1px solid var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all var(--transition);
}

.why__item:hover .why__icon {
  background: var(--teal);
  color: white;
  box-shadow: 0 8px 24px var(--teal-glow);
}

.why__item h4 { font-size: 17px; font-weight: 700; color: var(--navy); }
.why__item p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ═══════════════════════════════════════════
   DOCTORS
═══════════════════════════════════════════ */
.doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.doctor__card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.doctor__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-mid);
}

.doctor__photo {
  height: 200px;
  background: linear-gradient(145deg, var(--teal-light) 0%, var(--teal-mid) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.doctor__initials {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: -3px;
  position: relative;
  z-index: 1;
}

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

.doctor__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,53,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.doctor__card:hover .doctor__photo-overlay { opacity: 1; }

.doctor__appt-btn {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: var(--teal);
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: .04em;
  transition: all var(--transition);
}

.doctor__appt-btn:hover { background: var(--teal-dark); }

.doctor__info { padding: 20px; display: flex; flex-direction: column; gap: 6px; }

.doctor__dept {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 2px;
}

.doctor__dept--teal   { background: var(--teal-light); color: var(--teal-dark); }
.doctor__dept--blue   { background: #dbeafe; color: #1d4ed8; }
.doctor__dept--purple { background: #f0edff; color: #6d28d9; }
.doctor__dept--orange { background: #fff4ed; color: #c2410c; }
.doctor__dept--green  { background: #edfff4; color: #166534; }

.doctor__info h3 { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.doctor__qual { font-size: 12px; color: var(--teal); font-weight: 600; }
.doctor__role { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.doctor__exp { font-size: 11px; font-weight: 700; color: var(--teal); background: var(--teal-light); display: inline-block; padding: 3px 10px; border-radius: 100px; align-self: flex-start; }
.doctor__desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin-top: 4px; }
.doctor__photo-link { display: block; }
.doctor__info h3 a { color: var(--navy); }
.doctor__info h3 a:hover { color: var(--teal); }
.doctor__card-actions { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--teal-light); }
.doctor__profile-link { font-size: 13px; font-weight: 700; color: var(--teal); }
.doctor__profile-link:hover { text-decoration: underline; }
.doctor__appt-btn-sm { margin-left: auto; font-size: 12px; font-weight: 700; color: white; background: var(--navy); padding: 7px 14px; border-radius: 100px; transition: background var(--transition); }
.doctor__appt-btn-sm:hover { background: var(--teal-dark); }

/* ═══════════════════════════════════════════
   PACKAGES
═══════════════════════════════════════════ */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.package__card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-mid);
}

.package__card:hover::before { transform: scaleX(1); }

.package__card--featured {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 55%, var(--teal-deeper) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  overflow: visible; /* let the badge overhang without being clipped */
}

.package__card--featured::before { display: none; }

.package__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F4A261, #E76F51);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(231,111,81,.3);
}

.package__icon {
  width: 64px; height: 64px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}
.package__icon img { width: 100%; height: 100%; object-fit: contain; }
.package__card--featured .package__icon { background: rgba(255,255,255,.95); }
.package__icon svg { width: 100%; height: 100%; color: var(--teal); }

.package__card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.package__card--featured h3 { color: white; }
.package__card > p { font-size: 14px; color: var(--gray-500); margin-bottom: 22px; line-height: 1.7; }
.package__card--featured > p { color: rgba(255,255,255,.78); }

.package__card ul { list-style: none; margin-bottom: 0; margin-top: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.package__card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
}

.package__card--featured ul li { color: rgba(255,255,255,.82); }

.package__card ul li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.package__card--featured ul li::before { background: rgba(255,255,255,.55); }

.package__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  margin-top: auto;
  padding-top: 20px;
}

.package__price-old {
  font-size: 15px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.package__price-now {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.5px;
}

.package__price--white .package__price-old { color: rgba(255,255,255,.55); }
.package__price--white .package__price-now { color: white; }

.package__price-slash { font-size: 20px; font-weight: 600; }

.packages__note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--gray-500);
}

.packages__note a { color: var(--teal); font-weight: 600; text-decoration: none; }
.packages__note a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   SERVICES & FACILITIES
═══════════════════════════════════════════ */
.services { background: var(--gray-50); }

.services__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

.service-hl {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all var(--transition);
}
.service-hl:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-mid); }

.service-hl__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hl strong { display: block; font-size: 14.5px; color: var(--navy); font-weight: 700; }
.service-hl span { display: block; font-size: 12.5px; color: var(--gray-500); margin-top: 2px; line-height: 1.4; }

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

.service__card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.service__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--teal-mid); }

.service__card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.service__card-head h3 { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.25; }

.service__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__icon--teal   { background: #e6f7f7; color: var(--teal-dark); }
.service__icon--blue   { background: #eff6ff; color: #1d4ed8; }
.service__icon--orange { background: #fff7ed; color: #c2410c; }
.service__icon--green  { background: #f0fdf4; color: #166534; }

.service__card > p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }

.service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
  align-content: flex-start;
}
.service__list li {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 5px 11px;
  border-radius: 100px;
}
.service__list li.svc-clickable { cursor: pointer; transition: background var(--transition), color var(--transition); }
.service__list li.svc-clickable:hover { background: var(--teal); color: #fff; }

.service__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  align-self: flex-start;
  transition: gap var(--transition);
}
.service__link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.google-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto 40px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-md, 0 4px 20px rgba(0,0,0,.05));
  transition: all var(--transition);
}
.google-rating:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--teal-mid); }
.google-rating__logo { flex-shrink: 0; display: flex; }
.google-rating__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.google-rating__top { display: flex; align-items: center; gap: 10px; }
.google-rating__top strong { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; }
.google-rating__stars { color: #FBBC04; font-size: 18px; letter-spacing: 2px; }
.google-rating__label { font-size: 13px; color: var(--gray-500); }
.google-rating__label strong { color: var(--navy); font-weight: 700; }
.google-rating__cta { flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--teal); white-space: nowrap; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq__inner { max-width: 820px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }

.faq__item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 4px 24px;
  transition: all var(--transition);
}
.faq__item[open] { border-color: var(--teal-mid); box-shadow: var(--shadow-md, 0 4px 20px rgba(0,0,0,.05)); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  transition: transform var(--transition);
}
.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.75;
  padding: 0 0 20px;
  margin: 0;
}
.faq__item p a { color: var(--teal); font-weight: 600; }
.faq__item p a:hover { text-decoration: underline; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial__card--featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--teal-deeper) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  color: white;
}

.testimonial__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial__card--featured:hover {
  box-shadow: 0 24px 64px rgba(42,157,159,.3);
}

.testimonial__quote {
  color: var(--teal);
  opacity: .35;
}

.testimonial__card--featured .testimonial__quote { opacity: .5; color: white; }

.testimonial__card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.85;
  flex: 1;
  font-style: italic;
}

.testimonial__card--featured p { color: rgba(255,255,255,.8); }

.testimonial__stars { color: #F4A261; font-size: 17px; letter-spacing: 3px; }

.testimonial__author { display: flex; align-items: center; gap: 14px; }

.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--teal-glow);
}

.testimonial__author strong { display: block; font-size: 15px; color: var(--navy); }
.testimonial__card--featured .testimonial__author strong { color: white; }
.testimonial__author span { font-size: 12px; color: var(--gray-400); }
.testimonial__card--featured .testimonial__author span { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════
   APPOINTMENT
═══════════════════════════════════════════ */
.appointment {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, var(--teal-deeper) 100%);
}

.appointment__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(42,157,159,.05) 1px, transparent 0);
  background-size: 44px 44px;
  pointer-events: none;
}

.appointment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

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

.appointment__desc {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.8;
  margin: 16px 0 32px;
}

.appointment__info { display: flex; flex-direction: column; gap: 14px; }

.appt-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(42,157,159,.18);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
  color: rgba(255,255,255,.85);
}

.appt-info-card:hover {
  background: rgba(42,157,159,.12);
  border-color: rgba(42,157,159,.38);
  transform: translateX(4px);
}

.appt-info-card__icon {
  width: 44px; height: 44px;
  background: rgba(42,157,159,.15);
  border: 1px solid rgba(42,157,159,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.appt-info-card strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}

.appt-info-card span { font-size: 14px; color: rgba(255,255,255,.85); }

/* Form */
/* Booking tab wrapper */
.book__wrap {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.book__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--gray-100);
}

.book__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.book__tab svg { flex-shrink: 0; }

.book__tab:hover { color: var(--teal); background: white; }

.book__tab--active {
  color: var(--teal);
  background: white;
  border-bottom-color: var(--teal);
}

/* Form panels (tab content) */
.book__panel {
  display: none;
  padding: 36px 44px 40px;
  animation: panelFadeIn .25s ease;
}

.book__panel--active { display: block; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Submit buttons */
.book__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--navy);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
  margin-top: 8px;
}

.book__submit:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

.book__submit--teal { background: var(--teal); }
.book__submit--teal:hover { background: var(--teal-dark); }

/* Validity note inside test form */
.test-validity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}

.test-validity a { color: var(--teal); font-weight: 600; text-decoration: none; }
.test-validity a:hover { text-decoration: underline; }

/* Home-collection checkbox inside test form */
.test-homecollect {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-600, #475569);
  cursor: pointer;
  margin-bottom: 14px;
  user-select: none;
}
.test-homecollect input { width: 17px; height: 17px; accent-color: var(--teal); cursor: pointer; flex-shrink: 0; }
.test-homecollect strong { color: var(--teal-dark); }

.appointment__form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--teal);
}

.appointment__form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 13px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(42,157,159,.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray-400); }
.form__group textarea { resize: vertical; min-height: 90px; }

.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  border: 1px solid var(--teal-mid);
}

.form__success.show { display: flex; }

/* ═══════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════ */
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.location__details { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }

.location__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
}

.location__item:hover { border-color: var(--teal-mid); box-shadow: var(--shadow-sm); }
.location__item svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.location__item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.location__item span, .location__item a { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.location__item a:hover { color: var(--teal); }

.location__map iframe { width: 100%; height: 440px; border-radius: var(--radius-lg); border: 0; box-shadow: var(--shadow-lg); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark), var(--teal));
  background-size: 200%;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.footer__top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.07); }

.footer__top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  margin: 20px 0;
  max-width: 300px;
}

.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer__contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

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

.footer__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(42,157,159,.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}

.footer__social-btn svg { color: var(--teal); }

.footer__social-btn:hover {
  background: rgba(42,157,159,.15);
  border-color: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 20px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}

.footer__col ul li a:hover { color: white; padding-left: 6px; }

.footer__col address {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.9;
}

.footer__bottom {
  padding: 22px 0;
  background: rgba(0,0,0,.15);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(42,157,159,.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 500;
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(42,157,159,.55); }

/* ═══════════════════════════════════════════
   FLOATING CALL BUTTON (mobile)
═══════════════════════════════════════════ */
.call-fab {
  display: none;
  position: fixed;
  right: 18px; bottom: 140px;        /* right side, just above the scroll-top button */
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(22,163,74,.82);    /* slightly transparent green */
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(22,163,74,.3);
  z-index: 600;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.call-fab span { display: none; }     /* icon-only round button */
.call-fab:hover { color: #fff; background: rgba(22,163,74,1); transform: translateY(-3px); }

@media (max-width: 768px) {
  .call-fab { display: flex; }
  .back-to-top { bottom: 84px; right: 18px; } /* sits just below the call button */
}

/* ═══════════════════════════════════════════
   LEAD-CAPTURE MODAL
═══════════════════════════════════════════ */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal.open { display: flex; }
.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,43,53,.62);
  backdrop-filter: blur(3px);
  animation: leadFade .25s ease;
}
.lead-modal__card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 38px 32px 26px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: leadPop .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes leadFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes leadPop { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.lead-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 28px; line-height: 1;
  color: var(--gray-400);
  cursor: pointer;
}
.lead-modal__close:hover { color: var(--navy); }
.lead-modal__icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-modal__card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.lead-modal__card > p { font-size: 14.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 22px; }
.lead-modal__form { display: flex; flex-direction: column; gap: 12px; }
.lead-modal__form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
}
.lead-modal__form input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,157,159,.14); }
.lead-modal__btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}
.lead-modal__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px var(--teal-glow); }
.lead-modal__btn:disabled { opacity: .7; cursor: default; transform: none; }
.lead-modal__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d1fae5;
  color: #065f46;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.lead-modal__success.show { display: flex; }
.lead-modal__trust { display: block; margin-top: 16px; font-size: 12px; color: var(--gray-400); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-animate="fadeUp"]    { transform: translateY(40px); }
[data-animate="fadeRight"] { transform: translateX(-40px); }
[data-animate="fadeLeft"]  { transform: translateX(40px); }
[data-animate].is-visible  { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .doctors__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; min-width: unset; margin-top: 48px; }
  .hero__stat-card { flex: 1; min-width: 140px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__floating-card { display: none; }
  .appointment__inner { grid-template-columns: 1fr; gap: 48px; }
  .location__inner { grid-template-columns: 1fr; gap: 48px; }
  .dept__grid { grid-template-columns: repeat(2, 1fr); }
  .doctors__grid { grid-template-columns: repeat(2, 1fr); }
  .packages__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .services__highlights { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .doctor__photo { height: 300px; }
  .footer__top-inner { grid-template-columns: 1fr 1fr; }
  .journey__steps { flex-wrap: wrap; }
  .journey__connector { display: none; }
  .journey__step { flex: 1 1 calc(50% - 12px); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .topbar { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; z-index: 1001; position: relative; }

  .logo__img { height: 56px; margin-left: 12px; }

  .nav {
    position: fixed;
    top: clamp(72px, 10vw, 116px);
    left: 0; right: 0; bottom: 0;
    background: white;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
    border-top: 2px solid var(--teal-light);
    margin-left: 0;
  }

  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 14px 16px; font-size: 16px; justify-content: space-between; }
  .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-50); margin-top: 4px; }

  /* hide the quick-book strip — hero already has the CTAs */
  .quick-book { display: none; }

  /* hide slide dots — no room on small screens */
  .hero__dots { display: none; }

  .hero { min-height: auto; padding: 80px 0 96px; }
  .hero__title { font-size: 38px; }
  .hero__desc { font-size: 16px; }
  .hero__stats { display: none; }
  .hero__rating { display: inline-flex; margin-top: 22px; }

  /* hide the desktop scroll cue on mobile — it overlapped the review box */
  .hero__scroll-hint { display: none; }

  /* nudge the moving strip down a little, away from the hero */
  .marquee-strip { margin-top: 14px; padding: 16px 0; }

  .dept__grid,
  .doctors__grid,
  .packages__grid,
  .why__grid,
  .services__grid,
  .testimonials__grid { grid-template-columns: 1fr; }

  /* doctor portrait shows full face when card is full-width */
  .doctor__photo { height: 380px; }
  .doctor__photo-img { object-position: center 15%; }

  /* 3-tab booking switcher — tighten so it fits small screens */
  .book__tab { font-size: 12.5px; padding: 15px 6px; gap: 5px; }
  .book__tab svg { display: none; }
  .book__panel { padding: 28px 22px 32px; }

  .form__row { grid-template-columns: 1fr; }
  .appointment__form { padding: 30px 22px; }
  .footer__top-inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .journey__step { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__title { font-size: 32px; }
  .services__highlights { grid-template-columns: 1fr; }
  .doctor__photo { height: 340px; }
}
