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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #2c2c2c;
  background: #f8fafa;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ─── BRAND TOKENS (matched to logo) ─── */
:root {
  /* Teal — primary brand from logo */
  --teal: #00b4b8;
  --teal-dark: #007f82;
  --teal-deep: #005f62;
  --teal-mid: #009ea2;
  --teal-light: #e0f7f8;
  --teal-pale: #f0fbfb;

  /* Coral — accent dots from logo */
  --coral: #e8726a;
  --coral-dark: #c25850;
  --coral-light: #fde9e7;
  --coral-pale: #fff4f3;

  /* Neutrals */
  --white: #ffffff;
  --cream: #f8fafa;
  --border: #ddf0f0;
  --text-dark: #1a2e2e;
  --text-mid: #4a5f5f;
  --text-light: #7a9090;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 180, 184, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 127, 130, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 95, 98, 0.14);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.18;
  color: var(--teal-deep);
}

h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}

.divider {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  margin: 18px 0;
}

.divider.center {
  margin: 18px auto;
}

/* ─── TAGS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.tag-bulk {
  background: #e6f4ec;
  color: #1a7a3c;
  border: 1px solid #b6dfc4;
}

.tag-private {
  background: var(--coral-pale);
  color: var(--coral-dark);
  border: 1px solid #f5c4bf;
}

.tag-medical {
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1px solid #b0e8ea;
}

.tag-dental {
  background: var(--coral-pale);
  color: var(--coral-dark);
  border: 1px solid #f5c4bf;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--ease);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-coral {
  background: var(--coral);
  color: #fff;
}

.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232, 114, 106, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

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

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

.btn-white {
  background: #fff;
  color: var(--teal-deep);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 15px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 20px;
  letter-spacing: 0.02em;
}

.announcement-bar strong {
  color: #7eeef0;
  font-weight: 600;
}

.announcement-bar .sep {
  opacity: 0.3;
  margin: 0 14px;
}

/* ─── NAVIGATION ─── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 250, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px;
}

/* ── Logo (SVG recreation of clinic brand) ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-svg-wrap {
  height: 48px;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 70px;
}

/* Support walker <li> output */
.nav-links>li {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.nav-links>li:first-child {
  padding-left: 0;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  transition: var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--ease);
}

.nav-links a:hover {
  color: var(--teal-deep);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: var(--ease);
}

.nav-phone:hover {
  color: var(--teal-deep);
  background: var(--teal-light);
}

/* SHIP Accredited Header Button styling */
.nav-ship {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  transition: var(--ease);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.08);
  text-decoration: none;
}

.nav-ship:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(220, 39, 67, .3);
  border-color: transparent;
}

.nav-ship-mini {
  width: 54px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(110deg,#B91D6E 0%,#E33E4B 35%,#F58634 70%,#F8C429 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
}

.nav-ship-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-dark);
  line-height: 1.2;
  text-align: left;
}

.nav-ship-text small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .nav-actions .nav-ship {
    display: none;
  }
}

/* Hamburger — hidden by default (desktop), shown via media query */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}

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

.nav-wrapper.scrolled {
  box-shadow: 0 4px 24px rgba(0, 95, 98, 0.14);
}

/* ─── HERO ─── */
.hero {
  min-height: 690px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 50%, var(--teal-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-coral-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 114, 106, 0.15) 0%, transparent 65%);
}

.hero-teal-glow {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 184, 0.12) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Animated wave inspired by logo */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}

.hero-left {
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
}

.hero-eyebrow .dot-teal {
  width: 8px;
  height: 8px;
  background: #7eeef0;
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: #7eeef0;
}

.hero-subtext {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 430px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.badge-bulk {
  background: #1a7a3c;
  color: #fff;
}

.badge-open {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.badge-family {
  background: rgba(232, 114, 106, 0.25);
  color: #ffd0cc;
  border: 1px solid rgba(232, 114, 106, 0.3);
}

/* ─── BOOKING CARDS ─── */
.booking-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-lg);
  transition: var(--ease);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.booking-card.medical::before {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
}

.booking-card.dental::before {
  background: linear-gradient(90deg, var(--coral-dark), var(--coral));
}

.booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 72px rgba(0, 95, 98, 0.18);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.medical {
  background: var(--teal-light);
}

.card-icon.dental {
  background: var(--coral-pale);
}

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

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 16px;
}

.card-detail {
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-detail svg {
  width: 13px;
  height: 13px;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ─── TRANSITIONAL BANNER ─── */
.transition-banner {
  position: relative;
  background: var(--teal-deep);
  overflow: hidden;
  height: 110px;
}

.transition-banner .tb-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.transition-banner .tb-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tb-track-outer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tb-track {
  display: flex;
  align-items: center;
  animation: tbScroll 28s linear infinite;
  white-space: nowrap;
  gap: 0;
}

.tb-track:hover {
  animation-play-state: paused;
}

@keyframes tbScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.tb-item .tb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tb-item .tb-dot-teal {
  background: #7eeef0;
}

.tb-item .tb-dot-coral {
  background: var(--coral);
}

.tb-item strong {
  color: #7eeef0;
  font-weight: 400;
}

.tb-item .tb-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.tb-item .tb-tag.bulk-tag {
  background: rgba(26, 122, 60, 0.6);
  border-color: rgba(76, 180, 110, 0.4);
  color: #a8efc0;
}

.tb-item .tb-tag.private-tag {
  background: rgba(232, 114, 106, 0.3);
  border-color: rgba(232, 114, 106, 0.4);
  color: #ffd0cc;
}

.tb-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 28px;
  font-weight: 100;
  flex-shrink: 0;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-mid);
}

.trust-item svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 22px;
  background: var(--border);
}

/* ─── DUAL SERVICES ─── */
.dual-services {
  padding: 100px 0;
  background: var(--cream);
}

.dual-services-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.dual-services-header h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  margin-bottom: 14px;
}

.dual-services-header p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.75;
}

.dual-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.service-panel {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--ease);
}

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

.service-panel-header {
  padding: 36px 36px 28px;
  position: relative;
}

.service-panel.medical .service-panel-header {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
}

.service-panel.dental .service-panel-header {
  background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
}

.service-panel-body {
  background: #fff;
  padding: 28px 36px 36px;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.panel-badge.bulk {
  background: #1a7a3c;
  color: #fff;
}

.panel-badge.private {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.panel-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.service-list {
  margin-bottom: 26px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-item-icon.medical {
  background: var(--teal-light);
}

.service-item-icon.dental {
  background: var(--coral-pale);
}

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

.service-item-text h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.service-item-text p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
}

.fee-notice {
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.fee-notice.medical-notice {
  background: var(--teal-pale);
  color: var(--teal-dark);
  border-left: 3px solid var(--teal);
}

.fee-notice.dental-notice {
  background: var(--coral-pale);
  color: var(--coral-dark);
  border-left: 3px solid var(--coral);
}

.fee-notice svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── BULK BILLING SECTION ─── */
.bulk-section {
  background: linear-gradient(135deg, #0a5c2d 0%, #1a7a3c 60%, #2a9a50 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.bulk-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.bulk-content {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

.bulk-icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulk-icon-ring svg {
  width: 42px;
  height: 42px;
  color: #fff;
}

.bulk-text h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}

.bulk-text p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 540px;
}

.bulk-text p strong {
  color: #fff;
  font-weight: 600;
}

/* ─── FAMILY SECTION ─── */
.family-section {
  padding: 100px 0;
  background: #fff;
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.family-visual {
  position: relative;
}

.family-visual-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--teal-pale) 0%, #c8eeef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.family-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 170px;
}

.family-stat-card .stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--teal);
  line-height: 1;
}

.family-stat-card .stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.family-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--coral-pale);
  border: 3px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
}

.family-accent svg {
  width: 30px;
  height: 30px;
  color: var(--coral);
}

.family-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 18px;
  line-height: 1.22;
}

.family-content .lead {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 34px;
}

.age-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 34px;
}

.age-group {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 18px 20px;
  border: 1px solid var(--border);
  transition: var(--ease);
}

.age-group:hover {
  background: var(--teal-light);
  border-color: var(--teal);
}

.age-group .age-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.age-group h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 4px;
}

.age-group p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ─── TRANSITION BANNER 2 (between family and team) ─── */
.transition-banner-2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
}

.tb2-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  min-height: 0;
}

.tb2-panel {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.tb2-panel.medical-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tb2-panel.dental-panel {}

.tb2-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
}

.tb2-divider-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
}

.tb2-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tb2-label.teal-label {
  color: #7eeef0;
}

.tb2-label.coral-label {
  color: #ffb3ae;
}

.tb2-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}

.tb2-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tb2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.tb2-badge.bulk-badge {
  background: #1a7a3c;
  color: #fff;
}

.tb2-badge.fee-badge {
  background: rgba(232, 114, 106, 0.25);
  color: #ffb3ae;
  border: 1px solid rgba(232, 114, 106, 0.35);
}

.tb2-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
  border: none;
  margin-top: 4px;
  align-self: flex-start;
}

.tb2-btn.teal-btn {
  background: var(--teal);
  color: #fff;
}

.tb2-btn.teal-btn:hover {
  background: #00d0d5;
}

.tb2-btn.coral-btn {
  background: var(--coral);
  color: #fff;
}

.tb2-btn.coral-btn:hover {
  background: #f08880;
}

/* ─── TEAM ─── */
.team-section {
  padding: 100px 0;
  background: var(--cream);
}

.team-header {
  max-width: 520px;
  margin-bottom: 56px;
}

.team-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 14px;
}

.team-header p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

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

.team-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  border: 1px solid var(--border);
}

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

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.team-photo.medical-bg {
  background: linear-gradient(160deg, var(--teal-pale) 0%, #b8e8ea 100%);
}

.team-photo.dental-bg {
  background: linear-gradient(160deg, var(--coral-pale) 0%, #f5c8c4 100%);
}

.team-photo-placeholder {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
}

.team-photo-placeholder svg {
  width: 55%;
  height: 55%;
  opacity: 0.35;
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 3px;
}

.team-role {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-top: 10px;
}

/* ─── SPECIALISTS ─── */
.specialists-section {
  padding: 80px 0;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}

.specialists-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 60%, rgba(232, 114, 106, 0.08) 0%, transparent 50%);
}

.spec-content {
  position: relative;
}

.spec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 46px;
}

@media (max-width: 640px) {
  .spec-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.spec-header h2 {
  font-size: 38px;
  color: #fff;
}

.spec-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

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

.spec-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 26px 18px;
  text-align: center;
  transition: var(--ease);
}

.spec-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.spec-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  width: 24px;
  height: 24px;
  color: #7eeef0;
}

.spec-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}

.spec-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ─── LOCATION ─── */
.location-section {
  padding: 100px 0;
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 18px;
}

.location-info .intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

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

.hours-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px;
}

.hours-card-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.hours-card-title .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hours-card-title .dot.teal {
  background: var(--teal);
}

.hours-card-title .dot.coral {
  background: var(--coral);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
}

.hours-row .day {
  color: var(--text-dark);
}

.hours-row .time {
  font-weight: 500;
  color: var(--teal-dark);
}

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #d4ecee 0%, #b8dde0 100%);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 127, 130, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 127, 130, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
}

.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.65);
}

.map-road-h1 {
  left: 0;
  right: 0;
  height: 12px;
  top: 43%;
}

.map-road-h2 {
  left: 0;
  right: 0;
  height: 7px;
  top: 24%;
}

.map-road-h3 {
  left: 0;
  right: 0;
  height: 7px;
  top: 70%;
}

.map-road-v1 {
  top: 0;
  bottom: 0;
  width: 10px;
  left: 34%;
}

.map-road-v2 {
  top: 0;
  bottom: 0;
  width: 7px;
  left: 68%;
}

.map-pin-pos {
  position: absolute;
  top: 40%;
  left: 32%;
  transform: translate(-50%, -50%);
}

.map-pin-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 180, 184, 0.18);
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.map-pin-body {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid #fff;
  box-shadow: 0 3px 12px rgba(0, 127, 130, 0.4);
  position: relative;
  z-index: 1;
}

.map-address-card {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  min-width: 280px;
}

.map-address-card .addr {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.map-address-card .suburb {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 100px 0;
  background: var(--cream);
}

@media (max-width: 640px) {
  .cta-section {
    padding: 80px 10px;

  }
}

.cta-card {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  border-radius: 26px;
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 85%, rgba(232, 114, 106, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(0, 180, 184, 0.08) 0%, transparent 40%);
}

.cta-card h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: #fff;
  position: relative;
  margin-bottom: 14px;
}

.cta-card p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.68);
  position: relative;
  margin-bottom: 38px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─── */
footer {
  background: #052626;
  color: rgba(255, 255, 255, 0.68);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #fff;
}

.footer-brand .brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 9px;
  transition: var(--ease);
}

.footer-contact a:hover {
  color: #7eeef0;
}

.footer-contact a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--teal);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7eeef0;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.58);
  transition: var(--ease);
}

.footer-col ul li a:hover {
  color: #fff;
}

.f-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.f-hours-row:last-child {
  border-bottom: none;
}

.f-hours-row .d {
  color: rgba(255, 255, 255, 0.52);
}

.f-hours-row .t {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.04em;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--ease);
}

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

.social-btn svg {
  width: 15px;
  height: 15px;
}

.ack-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 14px 32px;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* ─── GOOGLE REVIEWS ─── */
.reviews-section {
  padding: 100px 0;
  background: #fff;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.reviews-header-left h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 10px;
}

.reviews-header-left p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 500px;
}

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  text-align: center;
  flex-shrink: 0;
}

.reviews-score .g-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.reviews-score .g-logo svg {
  width: 22px;
  height: 22px;
}

.reviews-score .score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.reviews-score .stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
}

.reviews-score .stars svg {
  width: 20px;
  height: 20px;
}

.reviews-score .review-count {
  font-size: 12px;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Swiper Overrides */
.reviews-slider-wrapper {
  position: relative;
}

.reviews-swiper .swiper-slide {
  height: auto;
}

.reviews-swiper .review-card {
  height: 100%;
}

.reviews-slider-wrapper .swiper-button-next,
.reviews-slider-wrapper .swiper-button-prev {
  color: var(--teal);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: var(--ease);
  margin-top: -25px;
  /* Offset to center vertically with cards, ignoring bottom pagination */
}

.reviews-slider-wrapper .swiper-button-prev {
  left: -52px;
}

.reviews-slider-wrapper .swiper-button-next {
  right: -52px;
}

@media (max-width: 768px) {
  .reviews-slider-wrapper {
    padding: 0;
  }

  .reviews-slider-wrapper .swiper-button-next,
  .reviews-slider-wrapper .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.swiper-pagination-bullet-active {
  background: var(--teal) !important;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  transition: var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: #fff;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info .reviewer-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.reviewer-info .review-date {
  font-size: 11.5px;
  color: var(--text-light);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 500;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

.reviews-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1.5px solid #e0e0e0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #3c4043;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-google:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
  transform: translateY(-1px);
  background: #fafafa;
}

.btn-google-primary {
  background: #4285F4;
  color: #fff;
  border-color: #4285F4;
}

.btn-google-primary:hover {
  background: #3367d6;
  border-color: #3367d6;
}

/* ─── SOCIAL BANNER ─── */
.social-banner {
  padding: 80px 0;
  background: var(--teal-pale);
  position: relative;
  overflow: hidden;
}

.social-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(0, 180, 184, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 50%, rgba(232, 114, 106, 0.06) 0%, transparent 50%);
}

.social-inner {
  position: relative;
  text-align: center;
}

.social-inner .section-label {
  text-align: center;
}

.social-inner h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 14px;
}

.social-inner .lead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 44px;
}

.social-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 44px;
  box-shadow: var(--shadow-md);
  transition: var(--ease);
  min-width: 260px;
  border: 1.5px solid var(--border);
}

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

.social-card.instagram-card:hover {
  border-color: #C13584;
}

.social-card.facebook-card:hover {
  border-color: #1877F2;
}

.social-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card-icon.ig-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card-icon.fb-icon {
  background: #1877F2;
}

.social-card-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.social-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--teal-deep);
}

.social-card .handle {
  font-size: 13px;
  color: var(--text-light);
}

.social-card .social-desc {
  font-size: 13px;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.6;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: #fff;
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-facebook {
  background: #1877F2;
  color: #fff;
}

.btn-facebook:hover {
  background: #0d6efd;
  transform: translateY(-1px);
}


/* ─── DROPDOWN ─── */
/* ─── DROPDOWN (desktop — smooth transition) ─── */
.has-dropdown {
  position: relative;
  cursor: default;
}

.dd-arrow {
  font-size: 0.55rem;
  opacity: 0.55;
  transition: transform 0.25s ease;
  margin-left: 3px;
  display: inline-block;
}

.has-dropdown.dropdown-open .dd-arrow {
  transform: rotate(180deg);
}

/* Use visibility + opacity + max-height for smooth reveal */
.drop-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 48px rgba(0, 95, 98, 0.15);
  padding: 8px;
  min-width: 260px;
  z-index: 1002;
  max-height: 75vh;
  overflow-y: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.drop-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.has-dropdown.dropdown-open .drop-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.drop-head {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 12px 4px;
  display: block;
}

.drop-menu a {
  display: block;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: var(--text-mid);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  font-weight: 400;
}

.drop-menu a:hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-weight: 500;
}

.drop-all {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 4px;
}

.drop-all a {
  color: var(--teal-dark) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
}

/* ─── MOBILE BOOK BAR ─── */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--teal-deep);
  padding: 13px 20px;
  z-index: 999;
  gap: 12px;
  border-top: 2px solid var(--teal);
}

/* ─── FADE ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   SIDE DRAWER — MOBILE NAVIGATION
   ═══════════════════════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -105vw;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  overflow: hidden;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--teal-pale);
  flex-shrink: 0;
}

.drawer-logo svg {
  display: block;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 180, 184, 0.1);
  border: 1px solid rgba(0, 180, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--teal-dark);
  transition: var(--ease);
  flex-shrink: 0;
}

.drawer-close:hover {
  background: var(--teal);
  color: #fff;
}

.drawer-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-deep);
  flex-shrink: 0;
}

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

.drawer-phone a {
  color: var(--teal-deep);
}

/* Override global nav styles so drawer can scroll properly */
.drawer-nav {
  display: block;
  height: auto;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 20px;
}

.drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-menu>li {
  border-bottom: 1px solid var(--border);
}

.drawer-menu>li:last-child {
  border-bottom: none;
}

.drawer-menu>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--ease);
}

.drawer-menu>li>a:hover,
.drawer-menu>li.open>a {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

/* Rotate the existing dd-arrow from the nav walker */
.drawer-menu>li>a .dd-arrow {
  font-size: 10px;
  opacity: 0.5;
  transition: transform 0.25s;
  display: inline-block;
  margin-left: auto;
  padding-left: 8px;
}

.drawer-menu>li.open>a .dd-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.drawer-menu .dropdown-menu,
.drawer-menu .drop-menu {
  max-height: 0;
  overflow: hidden;
  position: static !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  background: #f4fafa;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.32s ease, opacity 0.28s ease, padding 0.28s ease, visibility 0.28s;
}

.drawer-menu>li.open .dropdown-menu,
.drawer-menu>li.open .drop-menu {
  max-height: 1200px;
  /* Increased to fit very long menus */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding: 4px 0 10px;
}

.drawer-menu .dropdown-menu a,
.drawer-menu .drop-menu a {
  padding: 10px 20px 10px 32px;
  font-size: 13.5px;
  color: var(--text-mid);
  display: block;
  white-space: normal;
  line-height: 1.4;
}

.drawer-menu .dropdown-menu a:hover,
.drawer-menu .drop-menu a:hover {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.drawer-menu .dd-section,
.drawer-menu .drop-head {
  padding: 10px 20px 4px 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.drawer-actions {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: var(--cream);
}

/* Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open {
  display: block;
}

body.drawer-open {
  overflow: hidden;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {

  .announcement-bar,
  .ann-bar {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-book-bar {
    display: flex;
  }

  /* Hero mobile fixes */
  .hero {
    display: block;
    height: 100%;
    min-height: 100vh;
    padding-top: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 48px;
    display: block;
  }

  .hero h1 {
    font-size: clamp(24px, 6.5vw, 32px);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .hero h1 br {
    display: none;
  }

  /* let text flow naturally, no forced line breaks */
  .hero-subtext {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hero-badges {
    gap: 8px;
    margin-bottom: 24px;
  }

  /* Booking cards stack */
  .booking-cards {
    gap: 14px;
  }

  .booking-card {
    padding: 20px 18px;
  }

  /* Other layout */
  .dual-services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .bulk-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bulk-icon-ring {
    margin: 0 auto;
  }

  .cta-card {
    padding: 48px 28px;
  }

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

  .spec-header {
    flex-direction: column;
    gap: 10px;
  }

  .spec-header p {
    text-align: left;
    max-width: 100%;
  }

  .tb2-inner {
    grid-template-columns: 1fr;
  }

  .tb2-divider {
    display: none;
  }

  .tb2-panel {
    padding: 36px 28px;
  }

  .tb2-panel.medical-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .reviews-header {
    flex-direction: column;
  }

  .reviews-ctas {
    flex-direction: column;
    align-items: center;
  }

  .social-cards {
    flex-direction: column;
    align-items: center;
  }

  .social-card {
    width: 100%;
    max-width: 340px;
  }
}

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

  .age-groups {
    grid-template-columns: 1fr;
  }

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

  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }

  .booking-card {
    padding: 20px 18px;
  }

  .cta-card {
    padding: 36px 18px;
  }

  .bulk-text h2 {
    font-size: 26px;
  }

  .section-label {
    font-size: 10px;
  }
}


/* ════════════════════════════════════════════════════════
       ADDITIONAL STYLES — PAGE-SPECIFIC COMPONENTS
       (extracted from HTML reference pages for pixel-perfect match)
       ════════════════════════════════════════════════════════ */

/* ─── NAV INNER WRAPPER (theme uses nav > .nav-inner) ─── */
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 70px;
}

.nav-links {
  height: 70px;
  gap: 0;
}

.nav-links>li {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.nav-links>li:first-child {
  padding-left: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dark);
  font-weight: 600;
}

.nav-links a.active {
  border-bottom: 2px solid var(--teal);
}

/* ─── BOOK BUTTON ─── */
.nav-book-btn {
  background: var(--teal);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
  align-self: center;
}

.nav-book-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open {
  display: block;
}

/* ─── DROPDOWN MENU (smooth transition) ─── */
.has-dropdown {
  cursor: default;
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 48px rgba(0, 95, 98, 0.15);
  padding: 8px 8px 10px;
  min-width: 260px;
  z-index: 1001;
  max-height: 75vh;
  overflow-y: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.has-dropdown.dropdown-open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 1025px) {
  .nav-links > li.has-dropdown:hover > .dropdown-menu,
  .nav-links > li.has-dropdown:focus-within > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  
  .nav-links > li.has-dropdown:hover > a .dd-arrow,
  .nav-links > li.has-dropdown:focus-within > a .dd-arrow {
    transform: rotate(180deg);
  }
}

.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--text-mid);
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.3;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-weight: 500;
  outline: none;
}

.dd-section {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 10px 12px 4px;
  margin-top: 2px;
  display: block;
}

.dd-section:first-child {
  padding-top: 6px;
}

.dd-all {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 6px;
}

.dd-all a {
  color: var(--teal-dark) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
}

/* ─── ANN-BAR (service pages use this instead of announcement-bar) ─── */
.ann-bar {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.ann-bar a {
  color: #fff;
  text-decoration: underline;
}

/* ─── SECTION TITLE ─── */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--teal);
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* ─── HERO INNER / CARD (service page hero) ─── */
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-desc {
  color: rgba(255, 255, 255, .88);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--teal-deep);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

@media (max-width: 640px) {
  .hero-cta {
    margin-bottom: 20px;

  }
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
}

.hero-card-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--teal-light);
}

.hero-card-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-card-head span {
  font-size: .78rem;
  color: var(--text-light);
}

.billing-notice {
  background: var(--teal-pale);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 180, 184, .2);
}

.billing-badge {
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: .05em;
  display: inline-block;
  margin-bottom: 6px;
}

.billing-badge.bulk {
  background: #2e7d32;
}

.billing-badge.hicaps {
  background: var(--teal);
}

.billing-badge.private-fee {
  background: #5c5c8a;
}

.billing-desc {
  font-size: .78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.hero-card-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.hero-card-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-mid);
}

.hero-card-checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-card-btn {
  display: block;
  width: 100%;
  background: var(--teal);
  color: #fff;
  padding: 13px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  text-align: center;
  transition: background .2s, transform .2s;
}

.hero-card-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hero-card-note {
  text-align: center;
  font-size: .74rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* ─── OVERVIEW SECTION ─── */
.overview-section {
  background: var(--white);
  padding: 80px 40px;
}

.overview-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-img {
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.overview-img:hover img {
  transform: scale(1.03);
}

.overview-content p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.overview-content .book-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s, transform .2s;
  margin-top: 8px;
}

.overview-content .book-link:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* ─── FEATURES SECTION ─── */
.features-section {
  background: var(--teal-pale);
  padding: 80px 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feat-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  transition: transform .25s, box-shadow .25s;
}

.feat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}

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

/* ─── WHY CHOOSE US SECTION ─── */
.why-section {
  background: var(--white);
  padding: 80px 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--teal-dark));
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--teal);
  opacity: .55;
  line-height: 1;
  margin-bottom: 14px;
}

.why-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-item p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── FAQ SECTION ─── */
.faq-section {
  background: var(--teal-pale);
  padding: 80px 40px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-q span {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-arrow {
  width: 28px;
  height: 28px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
  color: var(--teal);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--teal);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}

.faq-a p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ─── RELATED SERVICES SECTION ─── */
.related-section {
  background: var(--cream);
  padding: 60px 40px;
}

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

.related-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
}

.related-card strong {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.related-card span {
  font-size: .75rem;
  color: var(--text-light);
}

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

/* ─── CTA SECTION COMPONENTS ─── */
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-title span {
  color: rgba(255, 255, 255, .7);
  font-style: italic;
}

.cta-sub {
  color: rgba(255, 255, 255, .82);
  font-size: .98rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── TRUST BAR ─── */
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.trust-text span {
  font-size: .78rem;
  color: var(--text-light);
}

/* ─── FOOTER WIDGETS ─── */
.footer-widget {}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

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

/* ─── SIDEBAR WIDGETS ─── */
.sidebar-widget {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

/* ─── HERO BADGES (service pages) ─── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .25);
}

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .overview-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-img {
    height: 300px;
  }

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

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

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

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

/* ─── RESPONSIVE — MOBILE ─── */
@media (max-width: 640px) {

  /* Hero service page */
  .hero {
    display: block;
    height: 100% !important;
    min-height: 100vh !important;
    padding: 60px 0 40px;
  }

  .hero-inner {
    display: block;
    padding: 0 20px;
  }

  .hero-text h1,
  .section-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .hero-desc {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  .hero-card {
    margin-top: 0;
  }

  /* Section padding */
  .overview-section,
  .features-section,
  .why-section,
  .faq-section,
  .cta-section,
  .related-section {
    padding: 60px 20px;
  }

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

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

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

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ════════════════════════════════════════════════════════
   DENTAL COLOUR THEME  —  .is-dental body class
   Swaps teal → coral/rose to match original dental HTML pages
   ════════════════════════════════════════════════════════ */

/* ── Announcement bar ── */
.is-dental .ann-bar {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
}

.is-dental .ann-bar a {
  color: #fff;
}

/* ── Hero gradient ── */
.is-dental .hero {
  background: linear-gradient(135deg, #9e3d36 0%, var(--coral-dark) 45%, var(--coral) 100%) !important;
}

.is-dental .hero h1 em {
  color: rgba(255, 255, 255, 0.82);
}

/* ── Hero CTA button ── */
.is-dental .hero-cta {
  color: var(--coral-dark);
}

/* ── Hero card ── */
.is-dental .hero-card-head {
  border-bottom-color: var(--coral-light);
}

.is-dental .hero-card-head h3 {
  color: var(--coral-dark);
}

/* ── Billing / HICAPS notice ── */
.is-dental .billing-notice {
  background: var(--coral-pale);
  border-color: rgba(232, 114, 106, 0.2);
}

.is-dental .billing-badge.hicaps {
  background: var(--coral);
}

/* ── Checklist ticks ── */
.is-dental .hero-card-checklist li::before {
  background: var(--coral-light);
  color: var(--coral-dark);
}

/* ── Book button in card ── */
.is-dental .hero-card-btn {
  background: var(--coral);
}

.is-dental .hero-card-btn:hover {
  background: var(--coral-dark);
}

/* ── Trust bar item left accent ── */
.is-dental .trust-item {
  border-left: 3px solid var(--coral);
}

/* ── Section label pill ── */
.is-dental .section-label {
  color: var(--coral-dark);
  /* background: var(--coral-light); */
}

/* ── Section title coloured word ── */
.is-dental .section-title span {
  color: var(--coral);
}

/* ── Overview "Book This Service" button ── */
.is-dental .overview-content .book-link,
.is-dental a.book-link {
  background: var(--coral);
}

.is-dental .overview-content .book-link:hover,
.is-dental a.book-link:hover {
  background: var(--coral-dark);
}

/* ── Overview image placeholder ── */
.is-dental .overview-img {
  background: linear-gradient(145deg, var(--coral-light), #f9d0cc) !important;
}

/* ── Features section background ── */
.is-dental .features-section {
  background: var(--coral-pale);
}

/* ── Feature card top border ── */
.is-dental .feat-card {
  border-top-color: var(--coral);
}

/* ── Why Choose Us stripe & number ── */
.is-dental .why-item::before {
  background: linear-gradient(to right, var(--coral), var(--coral-dark));
}

.is-dental .why-num {
  color: var(--coral);
}

/* ── Related services card border ── */
.is-dental .related-card {
  border-left-color: var(--coral);
}

/* ── FAQ section background ── */
.is-dental .faq-section {
  background: var(--coral-pale);
}

/* ── FAQ accordion arrow ── */
.is-dental .faq-arrow {
  background: var(--coral-pale);
  color: var(--coral);
}

.is-dental .faq-item.open .faq-arrow {
  background: var(--coral);
  color: #fff;
}

/* ── CTA section gradient ── */
.is-dental .cta-section {
  background: linear-gradient(135deg, #9e3d36 0%, var(--coral-dark) 60%, var(--coral) 100%) !important;
}

.is-dental .btn-white {
  color: var(--coral-dark);
}

/* ── Dropdown hover on dental pages ── */
.is-dental .dropdown-menu a:hover,
.is-dental .drop-menu a:hover {
  background: var(--coral-pale);
  color: var(--coral-dark);
}

.is-dental .dd-all a,
.is-dental .drop-all a {
  color: var(--coral-dark) !important;
}

/* ── Nav active underline ── */
.is-dental .nav-links a.active {
  border-bottom-color: var(--coral);
  color: var(--coral-dark);
}

.is-dental .nav-links a:hover::after {
  background: var(--coral);
}

.is-dental .nav-links a:hover {
  color: var(--coral-dark);
}

/* ── NEW PATIENT REGISTRATION ── */
.np-hero {
  min-height: 280px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 60%, var(--teal-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.np-hero-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 114, 106, .15) 0%, transparent 65%);
  pointer-events: none;
}

.np-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.np-section {
  background: var(--cream);
  padding: 60px 0 100px;
}

.np-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}

.np-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.np-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.np-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0ecec;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--ease);
}

.np-step.active .np-step-circle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 180, 184, .35);
}

.np-step.completed .np-step-circle {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.np-step.completed .np-step-circle span {
  display: none;
}

.np-step.completed .np-step-circle::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.np-step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.np-step.active .np-step-label,
.np-step.completed .np-step-label {
  color: var(--teal-dark);
}

.np-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 30px;
  max-width: 80px;
  margin: 0 6px;
  margin-bottom: 24px;
  transition: background .3s;
}

.np-step-line.completed {
  background: var(--teal-dark);
}

.np-error-banner {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--r-md);
  padding: 12px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dc2626;
  font-size: 13.5px;
  font-weight: 500;
}

.np-error-banner svg {
  flex-shrink: 0;
}

.np-form-step {
  display: none;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 44px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.np-form-step.active {
  display: block;
  animation: npFadeIn .3s ease;
}

@keyframes npFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.np-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
}

.np-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.np-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 100px;
}

.np-field-grow {
  flex: 1;
  min-width: 140px;
}

.np-field label,
.np-field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.np-req {
  color: var(--coral);
}

.np-field input,
.np-field select,
.np-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.np-field input:focus,
.np-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 184, .12);
}

.np-field input.np-invalid,
.np-field select.np-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}

.np-radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 0;
  border-radius: var(--r-sm);
  transition: background .2s;
}

.np-radio-group.np-invalid-group {
  background: rgba(220, 38, 38, .04);
}

.np-radio-col {
  flex-direction: column;
  gap: 10px;
}

.np-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dark);
  cursor: pointer;
  transition: color .2s;
}

.np-radio-label:hover {
  color: var(--teal-dark);
}

.np-radio-label input[type="radio"] {
  accent-color: var(--teal);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.np-health-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.np-health-item:last-of-type {
  border-bottom: none;
}

.np-health-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.np-consent-notice {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--teal-deep);
  line-height: 1.65;
  margin-bottom: 28px;
}

.np-consent-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.np-consent-item:last-of-type {
  border-bottom: none;
}

.np-consent-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}

.np-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.np-success {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.np-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 180, 184, .3);
}

.np-success-icon svg {
  width: 34px;
  height: 34px;
  color: #fff;
  stroke-width: 3;
}

.np-success h2 {
  font-size: 32px;
  color: var(--teal-deep);
  margin-bottom: 14px;
}

.np-success p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

@media(max-width:640px) {
  .np-form-step {
    padding: 28px 20px
  }

  .np-row {
    flex-direction: column
  }

  .np-step-label {
    display: none
  }

  .np-step-line {
    min-width: 20px
  }

  .np-nav-row {
    flex-direction: column-reverse
  }

  .np-nav-row .btn {
    width: 100%;
    justify-content: center
  }

  #medical-team div div:nth-child(2) {
    grid-template-columns: 1fr !important;

  }

  #dental-team div div:nth-child(2) {
    grid-template-columns: 1fr !important;

  }

  #allied-team div div:nth-child(2) {
    grid-template-columns: 1fr !important;

  }

}





@media (max-width: 768px) {
  .sidebar {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .articles-column {
    width: 100% !important;
  }
}