:root {
  --navy-primary: #2E3192;
  --sky-blue: #5CC2EE;
  --gold-accent: #D9A441;
  --lavender: #9D81BE;
  --bg-white: #FFFFFF;
  --bg-soft: #F8F9FC;
  --text-dark: #1A1A2E;

  --font-heading: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --container-width: 1180px;
  --radius: 16px;
  --shadow-soft: 0 20px 45px rgba(46, 49, 146, 0.12);

  /* Fallback only — main.js overwrites this with the nav's real measured
     height on load/resize, so layout never depends on a guessed constant. */
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--navy-primary);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-weight: 700; font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-weight: 600; font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin: 0 0 1em; }

img {
  max-width: 100%;
  display: block;
  height: auto;
  /* Prevent blank white flash while image loads */
  background-color: #f0f0f5;
  /* Smooth fade-in so images don't pop */
  transition: opacity 0.3s ease;
}
img[loading="lazy"] {
  /* Contain reserved space to prevent layout shift */
  content-visibility: auto;
}

a {
  color: var(--navy-primary);
  text-decoration: none;
}

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-primary);
  color: var(--bg-white);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Global keyboard focus indicator — visible only for keyboard nav,
   not mouse clicks, via :focus-visible. */
:focus-visible {
  outline: 2px solid var(--sky-blue);
  outline-offset: 2px;
}
.btn-primary:focus-visible,
.btn-book:focus-visible,
.btn-submit:focus-visible {
  outline-color: var(--navy-primary);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-book {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary,
.btn-book,
.btn-submit {
  background: var(--gold-accent);
  color: var(--navy-primary);
}

.btn-secondary,
.btn-primary {
  width: fit-content;
}
.btn-primary:hover,
.btn-book:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-primary);
  border-color: var(--navy-primary);
}
.btn-secondary:hover {
  background: var(--navy-primary);
  color: var(--bg-white);
}

/* ═══════════════════════════════════════════════════════════
   FLOATING PILL NAV
   ═══════════════════════════════════════════════════════════ */

/* Outer wrapper — transparent, fixed, full-width, click-through */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 20px 16px 0;
  pointer-events: none;         /* clicks pass through the wrapper itself */
  transition: padding 0.4s ease;
}

/* The pill — this is the visual nav bar */
.nav-pill {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 10px 20px;
  border-radius: 999px;
  background: var(--bg-white);
  border: 1px solid rgba(46,49,146,0.08);
  box-shadow: 0 4px 24px rgba(46,49,146,0.08), 0 2px 8px rgba(0,0,0,0.04);
  pointer-events: auto;         /* restore clicks inside the pill */
  gap: 16px;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  overflow: visible;
}

/* Warm peach-halo glow behind the pill */
.nav-pill::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 260%;
  background: radial-gradient(ellipse at center,
    rgba(217,164,65,0.35) 0%,
    rgba(156,132,190,0.15) 40%,
    transparent 70%);
  filter: blur(60px);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 50%;
}

/* Scrolled state ─ halo fades, shadow deepens, pill goes slightly more opaque */
.site-header.is-scrolled .nav-pill::before {
  opacity: 0.3;
}
.site-header.is-scrolled .nav-pill {
  box-shadow: 0 8px 32px rgba(46,49,146,0.14), 0 4px 12px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Logo ─────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-icon {
  height: 32px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-primary);
  white-space: nowrap;
}

/* Full horizontal lockup logo image */
.brand-logo {
  height: 44px;          /* fits pill comfortably */
  max-width: 200px;      /* cap on very wide screens */
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Keep old class harmless in case any template still uses it */
.brand-logo-full {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Hamburger (mobile only) ──────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 8px;
  flex-shrink: 0;
  z-index: 2;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-primary);
  display: block;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* X animation when open */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav list (desktop: horizontal row) ────── */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 7px 10px;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Underline draw on hover/active */
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--gold-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav-list > li > a:hover {
  color: var(--navy-primary);
}
.nav-list > li > a:hover::after {
  transform: scaleX(1);
}
.nav-list > li > a.is-active {
  color: var(--navy-primary);
}
.nav-list > li > a.is-active::after {
  transform: scaleX(1);
}

/* ── Dropdown toggle ────────────────────── */
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.dropdown-toggle:hover { color: var(--navy-primary); }
.dropdown-toggle .caret {
  font-size: 0.65rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.has-dropdown.is-open .dropdown-toggle .caret { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  min-width: 200px;
  background: var(--bg-white);
  box-shadow: 0 8px 32px rgba(46,49,146,0.14), 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 16px;
  border: 1px solid rgba(46,49,146,0.07);
  padding: 10px;
  z-index: 20;
}
.has-dropdown.is-open .dropdown-panel { display: block; }
.dropdown-panel li a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
}
.dropdown-panel li a:hover {
  background: var(--bg-soft);
  color: var(--navy-primary);
}

/* ── Right CTA group (desktop) ──────────── */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Primary CTA — navy fill pill */
.btn-nav-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--navy-primary);
  color: var(--bg-white);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn-nav-primary:hover {
  background: #1e2278;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,49,146,0.28);
  color: #fff;
}

/* Secondary CTA — ghost outline pill */
.btn-nav-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(46,49,146,0.2);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn-nav-secondary:hover {
  background: var(--bg-soft);
  border-color: rgba(46,49,146,0.35);
  color: var(--navy-primary);
}

/* Mobile-only CTAs inside nav sheet — hidden on desktop */
.nav-mobile-ctas { display: none; }

/* Keep old .btn-book referenced elsewhere (booking modal triggers etc.) */
.btn-book {
  padding: 9px 20px;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  background: var(--gold-accent);
  color: var(--navy-primary);
  text-decoration: none;
}

/* Hero */
/* Nav is fixed so hero fills the full viewport from top.
   min-height: 100vh fills the screen with no gap below.
   Images are wide panoramas — zoom is inherent with cover on a
   full-height container; background-position: left 30% keeps the
   left-side subjects (doctors/patients) visible in frame. */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Two stacked full-bleed layers crossfade between each other; a cover-image
   background always fills the box regardless of hero height, so this can't
   reintroduce the dead-space issue the floating-card layout had. */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  /* left 30% center: most subjects are in the left portion of these panoramas;
     anchoring here keeps them visible when cover zooms to fill 100vh */
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero-bg-layer.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* default: darken left side (text on left) */
  background: linear-gradient(90deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 100%);
  transition: background 0.6s ease;
}

.hero-inner {
  position: relative;
  z-index: 2;
  /* Top padding = nav height + breathing room below pill.
     This clears the floating nav without distorting flex centering. */
  padding: calc(var(--nav-height) + 20px) 24px 28px;
}

/* The copy-slides wrapper: full width, used to position text block */
.hero-copy-slides {
  position: relative;
  min-height: 220px;
  width: 100%;
}
.hero-copy-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;          /* default: text on LEFT */
}
.hero-copy-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* text on RIGHT side: un-pin the left edge, anchor to right */
.hero-copy-slide[data-align="right"] {
  left: auto;
  right: 0;
  text-align: left;
}
/* text on LEFT side: un-pin the right edge, anchor to left */
.hero-copy-slide[data-align="left"] {
  left: 0;
  right: auto;
  text-align: left;
}

/* Two-line headline */
.hero-copy-slide h1 {
  color: var(--bg-white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  line-height: 1.15;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.hero-line1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  display: block;
}
.hero-line2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  display: block;
  color: var(--gold-accent);
}
.hero-copy-slide p {
  color: rgba(255,255,255,0.92);
  max-width: 460px;
  margin-bottom: 1.8em;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-hero-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--navy-primary);
  border-color: #fff;
}

/* Page hero (inner pages) */
/* Nav is fixed, so page-hero needs top padding to clear it.
   Extra 48px breathing room above the heading. */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: calc(var(--nav-height) + 48px) 0 60px;
  color: var(--bg-white);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 100%);
}
.page-hero .container {
  position: relative;
}
.page-hero h1 { color: var(--bg-white); margin: 0; }
.breadcrumb {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.hero-subtitle {
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin-top: 8px;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 72px 0;
  position: relative;
}
.bg-soft { background: var(--bg-soft); }

.section-divider {
  display: block;
  line-height: 0;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ═══════════════════════════════════════════════════
   Fixed bottom news-channel ticker
   ═══════════════════════════════════════════════════ */
.news-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: 44px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
  border-top: 2px solid #1e3a8a;   /* navy, matches logo */
  box-shadow: 0 -3px 20px rgba(30,58,138,0.12);
  font-family: var(--font-body);
}

/* Navy-to-purple LIVE badge matching the logo */
.news-ticker__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px 0 14px;
  background: linear-gradient(135deg, #1e3a8a 0%, #5b21b6 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  white-space: nowrap;
}
.news-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: blink-dot 1.1s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Viewport: clips the scrolling strip */
.news-ticker__viewport {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

/* Fade edges */
.news-ticker__viewport::before,
.news-ticker__viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.news-ticker__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}
.news-ticker__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

/* Strip: normal flex child, sizes to content, scrolls via CSS animation */
.news-ticker__strip {
  display: flex;
  align-items: center;
  white-space: nowrap;      /* never wrap */
  flex-shrink: 0;           /* do NOT compress — keep full natural width */
  gap: 0;
  animation: nt-marquee 50s linear infinite;
}
.news-ticker__strip:hover {
  animation-play-state: paused;
}
@keyframes nt-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }  /* -50% of strip = one content copy */
}

/* ── Ticker atoms — navy / blue / purple palette ── */
.nt-branch {
  display: inline-block;
  color: #1e3a8a;        /* navy */
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0 6px 0 18px;
  text-transform: uppercase;
}
.nt-time {
  display: inline-block;
  color: #1d4ed8;        /* blue */
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 10px;
  background: rgba(29,78,216,0.08);
  border-radius: 20px;
  border: 1px solid rgba(29,78,216,0.25);
  margin: 0 8px;
}
.nt-sep {
  color: rgba(30,58,138,0.25);
  font-size: 0.6rem;
  padding: 0 12px;
}
.nt-cat {
  display: inline-block;
  color: #5b21b6;        /* purple — matches logo accent */
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 4px 0 16px;
}
.nt-item {
  display: inline-block;
  color: #334155;        /* dark slate */
  font-size: 0.82rem;
  padding: 0 4px;
}

/* Give the page body space so the ticker doesn't cover the footer */
body { padding-bottom: 44px; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .news-ticker__strip { animation: none; }
  .news-ticker__dot   { animation: none; }
}


/* Decorative low-opacity flower/pinwheel accent, reused from the logo's
   petal motif via CSS mask so it can be recolored per section. */
.has-motif {
  overflow: hidden;
}
.has-motif::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background-color: var(--lavender);
  opacity: 0.08;
  -webkit-mask-image: url('../img/flower-motif.svg');
  mask-image: url('../img/flower-motif.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  pointer-events: none;
  z-index: 0;
}
.has-motif > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.call-us {
  margin: 0;
  font-weight: 500;
}
.call-us strong { color: var(--navy-primary); margin-right: 8px; }
.call-us a { color: var(--gold-accent); font-weight: 700; }
.call-us a:hover { text-decoration: underline; }

.text-center { text-align: center; }
.lede {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--lavender);
  font-weight: 500;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.intro-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-grid.reverse {
  grid-template-columns: 1fr 1fr;
}
.intro-grid.reverse img { order: -1; }
.intro-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Stats */
.stats-grid {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: var(--shadow-soft);
}
.stat-card {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--navy-primary);
  border-right: 1px solid rgba(46, 49, 146, 0.15);
}
.stat-card:last-child {
  border-right: none;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;   /* equal-height cards per row */
}

.treatment-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: visible;           /* allow ::after border-trace to render outside clip */
  position: relative;          /* stacking context for ::after */
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* Clip only the card image, not the whole card, so border-trace stays visible */
.treatment-card-media {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  display: block;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(46, 49, 146, 0.18);
}
/* Gold border-trace: materialises on hover */
.treatment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--gold-accent);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.treatment-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.treatment-card-media {
  height: 180px;
  width: 100%;
  object-fit: cover;
  background-color: var(--bg-soft);
  display: block;
}

.treatment-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.treatment-card-body h3 { font-size: 1.1rem; }
.treatment-card-body p {
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 0.92rem;
  flex: 1;
}
/* Section 6 fix: CTA always pinned to card bottom, regardless of text length */
.treatment-card-body .link-arrow { margin-top: auto; padding-top: 12px; }

.link-arrow {
  font-weight: 700;
  color: var(--gold-accent);
  transition: color 0.2s ease, gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover {
  color: var(--navy-primary);
  gap: 8px;
}

.branch-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--sky-blue);
}
.branch-card-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}
.branch-card-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.contact-page-form {
  max-width: 560px;
  margin: 0 auto;
}

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--navy-primary);
  color: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card h3 { color: var(--sky-blue); }
.contact-card a { color: var(--bg-white); text-decoration: underline; }
.contact-card-phones {
  margin-top: auto;
  padding-top: 12px;
}
.contact-card-phones a {
  font-weight: 600;
  font-size: 1rem;
}
.contact-card .branch-card-map {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.email-strip {
  margin-top: 32px;
  text-align: center;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: 1.05rem;
}
.email-strip strong {
  color: var(--navy-primary);
  margin-right: 12px;
}
.email-strip a {
  color: var(--gold-accent);
  font-weight: 700;
}
.email-strip a:hover {
  text-decoration: underline;
}

/* Category / treatment pages */
.category-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.treatment-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.treatment-sidebar {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 24px;
}
.treatment-sidebar h3 { font-size: 1rem; }
.treatment-sidebar li { margin-bottom: 10px; }
.treatment-sidebar a { font-weight: 500; }
.treatment-sidebar a:hover { color: var(--sky-blue); }

.treatment-sidebar-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.treatment-sidebar-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.treatment-sidebar-image img:hover {
  transform: scale(1.04);
}

.treatment-benefits {
  margin: 28px 0;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold-accent);
}
.treatment-benefits h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--navy-primary);
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.benefits-list li {
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url('../img/flower-motif.svg') no-repeat center / contain;
  opacity: 0.65;
}

/* ── Section heading underline draw ──────────────────────── */
/* ScrollTrigger adds/removes .is-visible to trigger the draw */
h2.section-title {
  position: relative;
  display: inline-block;
}
h2.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 2px;
  margin-top: 8px;
  transition: width 0.6s ease 0.2s;
}
h2.section-title.is-visible::after {
  width: 60px;
}
/* Reduced-motion: skip the draw animation, underline always visible */
@media (prefers-reduced-motion: reduce) {
  h2.section-title::after { width: 60px; transition: none; }
}

/* Page transition: body starts transparent, JS fades it in on load */
body.page-transitioning {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Legal copy */
.legal-copy {
  max-width: 800px;
  margin: 0 auto;
}
.legal-copy h2 {
  margin-top: 1.6em;
  font-size: 1.3rem;
}

/* Footer */
.site-footer {
  position: relative;
  background: #ffffff;
  color: #334155;
  padding-top: 64px;
  overflow: hidden;
}
.site-footer::before {
  display: none; /* Removed the background pattern for a clean white look */
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-logo {
  height: 60px;
  margin-bottom: 16px;
}
.site-footer h3 {
  color: var(--navy-primary);
  font-size: 1rem;
  margin-bottom: 16px;
}
.site-footer a {
  color: #334155;
}
.site-footer a:hover { color: var(--navy-primary); font-weight: 600; }
.footer-links li,
.footer-services li,
.footer-branches li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer-pill {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-pill:hover {
  color: #fff;
  background: var(--navy-primary);
  border-color: var(--navy-primary);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px 0;
  font-size: 0.85rem;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-bottom-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-icon {
  height: 28px;
  width: auto;
}
.footer-bottom-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--navy-primary);
}

/* Booking modal */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.book-modal.is-open {
  display: flex;
}
.book-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
}
.book-modal-panel {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px;
  width: min(460px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-soft);
}
.book-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-dark);
}
.book-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-primary);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid rgba(46,49,146,0.25);
  border-radius: 10px;
  color: var(--text-dark);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--sky-blue);
  outline-offset: 1px;
}
.btn-submit {
  margin-top: 6px;
  width: 100%;
  text-align: center;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 144px;        /* sits 16px above the 56px whatsapp icon which is at 72px */
  right: 24px;
  z-index: 9001;
  width: 56px;          /* matches whatsapp float size */
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--navy-primary);
  color: var(--bg-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46, 49, 146, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 49, 146, 0.4);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
/* Contact section (legacy kept for any existing references) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--navy-primary);
  color: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card h3 { color: var(--sky-blue); }
.contact-card a { color: var(--bg-white); text-decoration: underline; }
.contact-card-phones { margin-top: auto; padding-top: 12px; }
.contact-card-phones a { font-weight: 600; font-size: 1rem; }
.contact-card .branch-card-map { margin-top: 16px; border-radius: 8px; overflow: hidden; }
.email-strip {
  margin-top: 32px;
  text-align: center;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: 1.05rem;
}
.email-strip strong { color: var(--navy-primary); margin-right: 12px; }
.email-strip a { color: var(--gold-accent); font-weight: 700; }
.email-strip a:hover { text-decoration: underline; }

/* ===== NEW CONTACT PAGE ===== */

/* Hero */
.contact-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--bg-white);
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.45) 100%);
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 56px) 0 72px;
}
.contact-hero-content .breadcrumb { color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.contact-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bg-white);
  margin: 0 0 16px;
}
.contact-hero-dots {
  display: block;
  color: var(--gold-accent);
  font-size: 1.2rem;
  letter-spacing: 6px;
  margin-bottom: 20px;
}
.contact-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Info Strip */
.contact-info-strip {
  background: var(--bg-white);
  box-shadow: 0 8px 40px rgba(46,49,146,0.10);
  position: relative;
  z-index: 2;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.cinfo-card {
  padding: 52px 40px 44px;
  border-right: 1px solid rgba(46,49,146,0.1);
  text-align: center;
  transition: background 0.25s ease;
}
.cinfo-card:last-child { border-right: none; }
.cinfo-card:hover { background: var(--bg-soft); }
.cinfo-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(217,164,65,0.12);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.cinfo-card:hover .cinfo-icon {
  background: var(--gold-accent);
  color: var(--bg-white);
  transform: translateY(-4px);
}
.cinfo-icon svg { width: 28px; height: 28px; }
.cinfo-card h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy-primary);
  margin: 0 0 20px;
}
.cinfo-branches { text-align: left; display: inline-block; }
.cinfo-branch-item { margin-bottom: 14px; }
.cinfo-branch-city {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
  display: block;
  margin-bottom: 2px;
}
.cinfo-branch-item p { font-size: 0.88rem; color: var(--text-dark); line-height: 1.5; margin: 0; }
.cinfo-phones { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.cinfo-phone-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cinfo-phone-link:hover { color: var(--navy-primary); }
.cinfo-emails { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.cinfo-email-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-accent);
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s ease;
}
.cinfo-email-link:hover { color: var(--navy-primary); }

/* Branch Maps */
.contact-maps-section { background: var(--bg-white); }
.branch-maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.branch-map-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.branch-map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(46,49,146,0.16);
}
.branch-map-header { display: flex; align-items: center; gap: 14px; padding: 24px 24px 0; }
.branch-map-pin {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.branch-map-pin svg { width: 20px; height: 20px; }
.branch-map-header h3 { font-size: 1.05rem; margin: 0 0 2px; color: var(--navy-primary); }
.branch-map-city {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
}
.branch-map-address { font-size: 0.88rem; color: var(--text-dark); padding: 12px 24px 0; line-height: 1.55; margin: 0; }
.branch-map-embed { margin: 16px 0 0; flex: 1; }
.branch-map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }
.branch-map-actions { display: flex; flex-direction: column; gap: 8px; padding: 16px 24px 24px; }
.branch-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.branch-map-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-call { background: var(--navy-primary); color: var(--bg-white); }
.btn-call:hover { background: var(--sky-blue); color: var(--bg-white); transform: translateY(-2px); }

/* WhatsApp floating CTA */
.whatsapp-float {
  position: fixed;
  bottom: 72px;         /* clear the 44px ticker + comfortable gap */
  right: 24px;
  z-index: 9001;        /* above the ticker */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid {
    flex-wrap: wrap;
    padding: 32px 24px;
    gap: 0;
  }
  .stat-card {
    flex: 0 0 25%;
    padding: 16px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(46, 49, 146, 0.1);
  }
  .stat-card:nth-child(n+5) {
    border-bottom: none;
  }
}

@media (max-width: 960px) {
  .intro-grid,
  .intro-grid.reverse {
    grid-template-columns: 1fr;
  }
  .intro-grid.reverse img { order: 0; }
  .intro-grid img {
    height: auto;
    max-height: 400px;
  }
  .treatment-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .cinfo-card {
    border-right: none;
    border-bottom: 1px solid rgba(46,49,146,0.1);
    padding: 36px 28px;
  }
  .cinfo-card:last-child { border-bottom: none; }
  .branch-maps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 32px 16px;
  }
  .stat-card {
    flex: 0 0 auto;
    min-width: 150px;
    scroll-snap-align: center;
    padding: 12px 20px;
    border-right: 1px solid rgba(46, 49, 146, 0.12);
    border-bottom: none;
  }
  .stat-card:last-child {
    border-right: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAV RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet: pill shrinks, More dropdown absorbs Wellness/About ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-pill {
    padding: 10px 20px;
    gap: 12px;
  }
  .nav-list > li > a,
  .dropdown-toggle {
    font-size: 0.78rem;
    padding: 6px 8px;
  }
  .btn-nav-primary { padding: 8px 16px; font-size: 0.78rem; }
  .btn-nav-secondary { padding: 8px 14px; font-size: 0.78rem; }
}

/* ── Mobile: pill = logo + hamburger only ── */
@media (max-width: 768px) {
  /* Tighter pill on mobile */
  .site-header { padding: 14px 12px 0; }
  .nav-pill {
    padding: 10px 16px;
    gap: 0;
  }

  /* Halo 30% narrower on mobile */
  .nav-pill::before {
    width: 110%;
    height: 200%;
    filter: blur(40px);
  }

  /* Hide desktop nav and right CTAs */
  .site-nav { display: none; }
  .nav-cta-group { display: none; }

  /* Show hamburger */
  .nav-toggle { display: flex; margin-left: auto; }

  /* Full-screen mobile menu sheet */
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 490;
    padding: calc(var(--nav-height) + 16px) 24px 40px;
    overflow-y: auto;
    animation: sheet-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes sheet-slide-in {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Mobile nav links: larger, full-width */
  .site-nav.is-open .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }
  .site-nav.is-open .nav-list > li {
    width: 100%;
  }
  .site-nav.is-open .nav-list > li > a {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(46,49,146,0.06);
    border-radius: 0;
    text-transform: uppercase;
  }
  .site-nav.is-open .nav-list > li > a::after { display: none; }
  .site-nav.is-open .dropdown-toggle {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(46,49,146,0.06);
    border-radius: 0;
    width: 100%;
    justify-content: space-between;
    text-transform: uppercase;
  }
  .site-nav.is-open .dropdown-panel {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--bg-soft);
    padding: 4px 0 4px 16px;
    display: none;
  }
  .site-nav.is-open .has-dropdown.is-open .dropdown-panel { display: block; }

  /* Mobile CTA pair inside nav sheet */
  .nav-mobile-ctas {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(46,49,146,0.08);
    width: 100%;
  }
  .nav-mobile-ctas .btn-nav-primary,
  .nav-mobile-ctas .btn-nav-secondary {
    display: block;
    text-align: center;
    font-size: 1rem;
    padding: 14px 20px;
  }
}

/* Footer grid single col on small screens */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   BRANCH PAGES
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.branch-hero {
  background: var(--navy-primary);
  background-image: linear-gradient(135deg, #1a1d5e 0%, var(--navy-primary) 50%, #3a3da8 100%);
  /* Nav is fixed: add nav-height + breathing room above branch hero content */
  padding: calc(var(--nav-height) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}
.branch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.branch-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.branch-hero .breadcrumb {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.branch-hero .breadcrumb a {
  color: rgba(255,255,255,0.75);
}
.branch-hero .breadcrumb a:hover { color: var(--gold-accent); }

.branch-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.5em;
}

.branch-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.branch-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-hero-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-hero-outline:hover {
  border-color: var(--gold-accent);
  background: rgba(217,164,65,0.15);
  color: var(--gold-accent);
}

/* ── Visit section ── */
.branch-visit-section { padding: 80px 0; }

.branch-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.branch-visit-info h2 {
  margin-bottom: 1.4rem;
}

.branch-detail-row {
  display: flex;
  gap: 14px;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}

.branch-detail-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--navy-primary);
  margin-top: 2px;
}
.branch-detail-icon svg { width: 100%; height: 100%; }

.branch-detail-row strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-primary);
}

.branch-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.branch-phone-link {
  color: var(--navy-primary);
  font-weight: 600;
  transition: color 0.2s;
}
.branch-phone-link:hover { color: var(--gold-accent); }

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--navy-primary);
  color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-top: 12px;
  text-decoration: none;
}
.btn-directions svg { width: 18px; height: 18px; }
.btn-directions:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: #1e2278;
}

.branch-visit-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ── Treatments category grid ── */
.branch-treatments-section { padding: 80px 0; }

.branch-treatments-intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.branch-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.branch-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.branch-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(46,49,146,0.18);
}

.branch-cat-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.branch-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.branch-cat-card:hover .branch-cat-card-img img { transform: scale(1.04); }

.branch-cat-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.branch-cat-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.branch-cat-card-body p {
  font-size: 0.95rem;
  flex: 1;
  color: #555;
}
.branch-cat-card-body .link-arrow {
  margin-top: 12px;
  font-weight: 700;
  color: var(--navy-primary);
  font-size: 0.95rem;
}
.branch-cat-card:hover .link-arrow { color: var(--gold-accent); }

/* ── Why Choose section ── */
.branch-why-section { padding: 80px 0; }

.branch-why-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

.branch-why-text h2 { margin-bottom: 1rem; }

.branch-why-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.branch-why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.6;
}

.branch-why-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.branch-why-check svg {
  width: 14px;
  height: 14px;
  fill: var(--navy-primary);
}

.branch-why-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.branch-stat-chip {
  background: var(--navy-primary);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ── Book section ── */
.branch-book-section { padding: 72px 0; }
.branch-book-section h2 { margin-bottom: 0.5rem; }
.branch-book-section > .container > p { margin-bottom: 1.8rem; }

.branch-book-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-call-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid var(--navy-primary);
  color: var(--navy-primary);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-call-outline svg { width: 18px; height: 18px; }
.btn-call-outline:hover {
  background: var(--navy-primary);
  color: #ffffff;
}

/* ── Nav dropdown additions ── */
.dropdown-divider {
  height: 1px;
  background: var(--bg-soft);
  margin: 8px 12px;
  pointer-events: none;
}

.dropdown-section-label {
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-primary);
  opacity: 0.55;
}

/* ── Footer branch sub-heading ── */
.footer-links-sub {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.2rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* ── Branch page responsive ── */
@media (max-width: 900px) {
  .branch-visit-grid {
    grid-template-columns: 1fr;
  }
  .branch-visit-map iframe {
    height: 280px;
  }
  .branch-why-inner {
    grid-template-columns: 1fr;
  }
  .branch-why-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .branch-stat-chip { flex: 1 1 160px; }
}

@media (max-width: 600px) {
  .branch-hero { padding: calc(var(--nav-height) + 40px) 0 56px; }
  .branch-hero-cta { flex-direction: column; align-items: flex-start; }
  .branch-cat-grid { grid-template-columns: 1fr; }
  .branch-book-cta { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   AI CHATBOT WIDGET
   ═══════════════════════════════════════════════════════════ */

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

/* Launcher button — directly opposite WhatsApp:
     bottom-right: WhatsApp at 72px
     bottom-left:  chatbot launcher at 72px  ← mirrors WhatsApp exactly
     bottom-right: back-to-top at 144px (stacked above WhatsApp, right side)
*/
.zs-chat-launcher {
  position: fixed;
  bottom: 72px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(46,49,146,0.35);
  z-index: 490;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.zs-chat-launcher svg { width: 26px; height: 26px; fill: #ffffff; }
.zs-chat-launcher:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,49,146,0.45);
  background: #1e2278;
}
.zs-chat-launcher.is-open { background: #1e2278; }
@media (prefers-reduced-motion: reduce) { .zs-chat-launcher { transition: none; } }

/* Chat panel — opens 12px above the launcher button (bottom-left) */
.zs-chat-panel {
  position: fixed;
  bottom: 140px;   /* 72px launcher bottom + 56px launcher height + 12px gap */
  left: 24px;
  width: 400px;
  height: 600px;
  max-height: calc(100vh - 180px);
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(46,49,146,0.22), 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 489;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
}
.zs-chat-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .zs-chat-panel { transition: none; transform: none; }
}

/* Mobile: full-screen slide-up sheet */
@media (max-width: 639px) {
  .zs-chat-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    transform: translateY(100%);
  }
  .zs-chat-panel.is-open { transform: translateY(0); }
  /* Mobile: chat launcher bottom-left, WhatsApp + back-to-top bottom-right */
  .zs-chat-launcher { bottom: 72px;  left: 16px; right: auto; }
  .back-to-top       { bottom: 144px; right: 16px; }
  .whatsapp-float    { bottom: 72px;  right: 16px; }
}

/* Header */
.zs-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--navy-primary);
  flex-shrink: 0;
}
.zs-chat-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
}
.zs-chat-header-icon { width: 20px; height: 20px; fill: var(--gold-accent); flex-shrink: 0; }
.zs-chat-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s, background 0.15s;
}
.zs-chat-close:hover { color: #ffffff; background: rgba(255,255,255,0.12); }
.zs-chat-close svg { width: 20px; height: 20px; fill: currentColor; }

/* Message list */
.zs-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.zs-chat-messages::-webkit-scrollbar { width: 4px; }
.zs-chat-messages::-webkit-scrollbar-track { background: transparent; }
.zs-chat-messages::-webkit-scrollbar-thumb { background: rgba(46,49,146,0.2); border-radius: 4px; }

/* Bubbles */
.zs-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  word-break: break-word;
}
.zs-bubble--user {
  align-self: flex-end;
  background: var(--navy-primary);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}
.zs-bubble--bot {
  align-self: flex-start;
  background: var(--bg-soft);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(46,49,146,0.08);
}
.zs-bubble--animate { animation: zs-bubble-in 0.2s ease forwards; }
@keyframes zs-bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .zs-bubble--animate { animation: none; } }

/* Typing indicator */
.zs-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  min-width: 56px;
}
.zs-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-primary);
  opacity: 0.4;
  animation: zs-dot 1.1s infinite ease-in-out;
}
.zs-typing span:nth-child(2) { animation-delay: 0.2s; }
.zs-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes zs-dot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.9); }
  40%           { opacity: 1;   transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) { .zs-typing span { animation: none; opacity: 0.6; } }

/* Suggested chips */
.zs-chip-row { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 100%; }
.zs-chip {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--navy-primary);
  background: transparent;
  color: var(--navy-primary);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.zs-chip:hover { background: var(--navy-primary); color: #ffffff; }

/* Input row */
.zs-chat-input-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(46,49,146,0.1);
  background: var(--bg-white);
  flex-shrink: 0;
}
.zs-chat-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 9px 13px;
  border: 1.5px solid rgba(46,49,146,0.2);
  border-radius: 12px;
  resize: none;
  overflow: hidden;
  line-height: 1.5;
  max-height: 80px;
  transition: border-color 0.2s;
  color: var(--text-dark);
  background: var(--bg-soft);
}
.zs-chat-input:focus { outline: none; border-color: var(--navy-primary); background: var(--bg-white); }
.zs-chat-input:disabled { opacity: 0.55; cursor: not-allowed; }
.zs-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gold-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.zs-chat-send svg { width: 18px; height: 18px; fill: var(--navy-primary); }
.zs-chat-send:hover { transform: scale(1.08); background: #c9922e; }
.zs-chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════════════════════════
   TRUST BAND — Section 2
   ═══════════════════════════════════════════════════════════ */
.trust-band {
  background: var(--navy-primary);
  padding: 0;
  position: relative;
  z-index: 2;
}
.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 18px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  scroll-snap-align: center;
  flex-shrink: 0;
  padding: 0 16px;
}
.trust-icon {
  width: 18px;
  height: 18px;
  fill: var(--gold-accent);
  flex-shrink: 0;
}
.trust-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
.trust-number { color: var(--gold-accent); font-weight: 700; }
.trust-sep {
  color: var(--gold-accent);
  font-size: 0.5rem;
  opacity: 0.7;
  flex-shrink: 0;
}
/* Hide scrollbar on trust band */
.trust-band-inner::-webkit-scrollbar { display: none; }
.trust-band-inner { -ms-overflow-style: none; scrollbar-width: none; }

@media (max-width: 640px) {
  .trust-item { padding: 0 12px; }
  .trust-label { font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — Section A (fully redesigned)
   ═══════════════════════════════════════════════════════════ */
.hiw-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
/* SVG diagonal texture overlay */
.hiw-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
/* Heading block */
.hiw-head {
  text-align: center;
  margin-bottom: 72px;
}
.hiw-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.hiw-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin: 0 0 12px;
  line-height: 1.15;
}
.hiw-underline {
  width: 48px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 2px;
  margin: 0 auto 16px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.hiw-underline.is-visible { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .hiw-underline { transform: scaleX(1); transition: none; } }
.hiw-subhead {
  font-family: var(--font-body);
  font-size: 18px;
  color: #6B7280;
  margin: 0;
  line-height: 1.6;
}
/* 3-column grid */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
/* SVG connector (desktop only) */
.hiw-svg-connector {
  position: absolute;
  top: 0;
  left: calc(16.666% + 32px);
  right: calc(16.666% + 32px);
  height: 64px;          /* same as icon circle diameter */
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
/* Each step card */
.hiw-card {
  background: #ffffff;
  border: 1px solid rgba(46,49,146,0.08);
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: 0 4px 32px rgba(46,49,146,0.06);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  overflow: hidden;
}
.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 48px rgba(46,49,146,0.12);
}
/* Decorative step number */
.hiw-deco-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--navy-primary);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* Icon circle */
.hiw-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: outline 0.3s ease;
  box-shadow: 0 4px 16px rgba(46,49,146,0.2);
}
.hiw-card:hover .hiw-icon-wrap {
  outline: 3px solid var(--gold-accent);
  outline-offset: 3px;
}
.hiw-icon-wrap svg { width: 28px; height: 28px; fill: var(--gold-accent); }
/* Step label */
.hiw-step-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--gold-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
/* Step heading */
.hiw-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--navy-primary);
  margin: 0 0 14px;
  line-height: 1.2;
}
/* Step body */
.hiw-step-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4B5563;
  margin: 0;
}
/* CTA button */
.hiw-cta-wrap {
  text-align: center;
  margin-top: 56px;
}
.hiw-cta-btn {
  display: inline-block;
  background: var(--navy-primary);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.hiw-cta-btn:hover {
  background: var(--gold-accent);
  color: var(--navy-primary);
  transform: translateY(-2px);
}
/* Mobile */
@media (max-width: 768px) {
  .hiw-section { padding: 60px 0; }
  .hiw-container { padding: 0 20px; }
  .hiw-head { margin-bottom: 48px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 24px; }
  .hiw-svg-connector { display: none; }
  .hiw-card { padding: 32px 24px; }
  .hiw-deco-num { font-size: 56px; opacity: 0.05; }
  .hiw-card:hover { transform: none; } /* no hover effect on touch */
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS — Section B (fully redesigned — LIGHT BG)
   ═══════════════════════════════════════════════════════════ */
.rv-section {
  background: linear-gradient(135deg, #F8F9FC 0%, #EEF0F8 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
/* Heading */
.rv-head {
  text-align: center;
  margin-bottom: 56px;
}
.rv-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.rv-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin: 0 0 12px;
  line-height: 1.15;
}
.rv-underline {
  width: 48px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 2px;
  margin: 0 auto 16px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.rv-underline.is-visible { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .rv-underline { transform: scaleX(1); transition: none; } }
.rv-subhead {
  font-family: var(--font-body);
  font-size: 16px;
  color: #6B7280;
  margin: 0;
}
/* Slider outer — position:relative for absolute arrows */
.rv-slider-outer {
  position: relative;
}
/* Prev / Next arrows (desktop only) */
.rv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rv-arrow:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.18); transform: translateY(-50%) scale(1.08); }
.rv-arrow svg { width: 20px; height: 20px; fill: var(--navy-primary); }
.rv-arrow--prev { left: -20px; }
.rv-arrow--next { right: -20px; }
/* Track wrapper clips overflow */
.rv-track-wrapper {
  overflow: hidden;
}
/* Track: horizontal scroll snap */
.rv-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;   /* prevent shadow clipping */
}
.rv-track::-webkit-scrollbar { display: none; }
/* Review card */
.rv-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  border-left: 4px solid var(--gold-accent);
  box-shadow: 0 4px 24px rgba(46,49,146,0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(46,49,146,0.14);
}
/* Decorative opening quote */
.rv-quote-mark {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: Georgia, var(--font-heading);
  font-size: 80px;
  color: var(--gold-accent);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* Stars */
.rv-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.rv-star {
  width: 18px;
  height: 18px;
}
.rv-star--on  { fill: #FBBF24; }
.rv-star--off { fill: var(--gold-accent); opacity: 0.2; }
/* Review text */
.rv-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}
/* Divider */
.rv-divider {
  border: none;
  border-top: 1px solid rgba(46,49,146,0.08);
  margin: 20px 0;
}
/* Footer row */
.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.rv-author { display: flex; flex-direction: column; gap: 4px; }
.rv-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-primary);
}
.rv-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #6B7280;
}
.rv-verified svg { width: 14px; height: 14px; fill: #22C55E; }
.rv-branch-badge {
  background: var(--navy-primary);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Dots navigation */
.rv-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.rv-dot {
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(46,49,146,0.2);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  width: 8px;
  padding: 0;
}
.rv-dot.is-active {
  width: 24px;
  background: var(--gold-accent);
}
/* Mobile */
@media (max-width: 767px) {
  .rv-section { padding: 60px 0; }
  .rv-container { padding: 0 20px; }
  .rv-card { flex: 0 0 calc(100vw - 48px); min-width: calc(100vw - 48px); }
  .rv-arrow { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   BEFORE / AFTER — Real images (uniform size per slot)
   ═══════════════════════════════════════════════════════════ */
.ba-section { background: var(--bg-white); }
.ba-heading { margin-bottom: 2.5rem; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-slot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ba-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;     /* all 3 slots forced to same square ratio */
  box-shadow: var(--shadow-soft);
  background: var(--bg-soft);
}
.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.ba-slot:hover .ba-img { transform: scale(1.03); }
.ba-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin: 4px 0 0;
}
.ba-result-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-accent);
  margin: 0;
}
.ba-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.5);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MULTI-STEP BOOKING FORM — Section 7
   ═══════════════════════════════════════════════════════════ */
.msf-panel { max-width: 560px; padding: 28px 32px 36px; }

/* Progress indicator */
.msf-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.msf-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.msf-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(46,49,146,0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.msf-progress-step.is-active .msf-step-dot,
.msf-progress-step.is-done .msf-step-dot {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
}
.msf-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(46,49,146,0.4);
  transition: color 0.25s ease;
}
.msf-progress-step.is-active .msf-step-label,
.msf-progress-step.is-done .msf-step-label {
  color: var(--navy-primary);
}
.msf-progress-line {
  flex: 1;
  height: 2px;
  background: rgba(46,49,146,0.15);
  margin: 0 8px;
  margin-bottom: 18px;
  transition: background 0.4s ease;
}
.msf-progress-line.is-done { background: var(--navy-primary); }

.msf-title { margin-bottom: 6px; font-size: 1.2rem; }
.msf-step-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-primary);
  opacity: 0.6;
  margin: 0 0 16px;
}

/* Step panels */
.msf-step-panel {
  display: none;
}
.msf-step-panel.is-active { display: block; }

/* Step 1: service tiles */
.msf-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.msf-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border-radius: 12px;
  border: 2px solid rgba(46,49,146,0.15);
  background: var(--bg-soft);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  position: relative;
  text-align: center;
}
.msf-tile svg:first-child { width: 28px; height: 28px; fill: var(--navy-primary); }
.msf-tile-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 18px; height: 18px;
  fill: var(--gold-accent);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.msf-tile:hover { border-color: rgba(46,49,146,0.4); transform: translateY(-2px); }
.msf-tile.is-selected {
  border-color: var(--navy-primary);
  background: rgba(46,49,146,0.06);
}
.msf-tile.is-selected .msf-tile-check { opacity: 1; }
/* 5th tile spans 2 cols, centered */
.msf-tile:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

/* Step 2: branch cards */
.msf-branch-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.msf-branch-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid rgba(46,49,146,0.15);
  background: var(--bg-soft);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.msf-branch-city {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-primary);
}
.msf-branch-address { font-size: 0.82rem; color: rgba(0,0,0,0.55); }
.msf-branch-phone { font-size: 0.85rem; font-weight: 600; color: var(--gold-accent); margin-top: 4px; }
.msf-branch-card .msf-tile-check { opacity: 0; }
.msf-branch-card:hover { border-color: rgba(46,49,146,0.4); }
.msf-branch-card.is-selected { border-color: var(--navy-primary); background: rgba(46,49,146,0.06); }
.msf-branch-card.is-selected .msf-tile-check { opacity: 1; }

/* Step 3: fields */
.msf-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.msf-step3-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.msf-submit { width: auto; }
.msf-back {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-primary);
  cursor: pointer;
  opacity: 0.6;
  padding: 0;
  transition: opacity 0.2s;
}
.msf-back:hover { opacity: 1; }

/* Success state */
.msf-success {
  text-align: center;
  padding: 32px 20px;
}
.msf-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22C55E;
  color: #ffffff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.msf-success h4 { font-size: 1.4rem; color: var(--navy-primary); margin-bottom: 8px; }
.msf-success p  { color: var(--text-dark); opacity: 0.75; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   FORM SUCCESS + ERROR STATES (Netlify Forms AJAX responses)
   ═══════════════════════════════════════════════════════════ */

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-accent);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--navy-primary);
  margin-bottom: 12px;
}
.form-success p {
  color: #6B7280;
  font-family: var(--font-body);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-success a {
  color: var(--navy-primary);
  font-weight: 700;
}

.form-error {
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #EF4444;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.form-error p {
  margin: 0;
  font-size: 0.9rem;
  color: #B91C1C;
  font-family: var(--font-body);
  line-height: 1.5;
}
.form-error a {
  color: #B91C1C;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-primary);
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  min-width: 200px;
}

.cookie-link {
  color: var(--gold-accent);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-link:hover { opacity: 0.8; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--gold-accent);
  color: var(--navy-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-cookie-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   CHATBOT — WHATSAPP HANDOFF BUTTON
   ═══════════════════════════════════════════════════════════ */

.chat-whatsapp-handoff {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 8px;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}
.chat-whatsapp-handoff:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  color: #fff;
}
.chat-whatsapp-handoff svg {
  flex-shrink: 0;
}
