/* ============================================
   mHealth — Subsite CSS Overrides
   Loads AFTER custom-components.css
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* === Reset WP default block gaps === */
.wp-site-blocks > * + *,
.is-layout-flow > * + * {
  margin-block-start: 0;
}

/* === Hide theme sticky CTA (LP pages have their own variant-specific sticky) === */
.sticky-cta { display: none !important; }

/* === Global reset + base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #27b6fa;
  --brand-dark: #0e8fd4;
  --brand-light: #e4f2ff;
  --brand-84: rgba(39, 182, 250, 0.84);
  --ink: #000000;
  --ink-body: #4c4d4f;
  --ink-muted: #7b7b7b;
  --border: #c2c2c2;
  --border-light: rgba(76, 77, 79, 0.13);
  --surface: rgba(194, 194, 194, 0.12);
  --warm-surface: #f5f4f0;
  --white: #ffffff;
  --dark: #151515;
  --accent-warm: #e8734a;
  --success: #2d9d6f;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--ink); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 500; margin-bottom: 10px; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .wrap { padding: 0 48px; } }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: var(--white); }
.btn--primary:hover { background: var(--brand-dark); }
.btn--outline-white { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.btn--outline { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.btn--outline:hover { background: var(--brand-light); }
.btn--white { background: var(--white); color: var(--brand-dark); }
.btn--white:hover { background: var(--brand-light); }
.btn--lg { padding: 18px 40px; font-size: 16px; }

/* =========================================
   HEADER
========================================= */
.site-header {
  background: var(--brand);
  padding: 16px 0;
  position: sticky; top: 0; z-index: 100;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { height: 40px; width: auto; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-phone {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--white); letter-spacing: 0.02em;
}
.header-phone a { color: var(--white); }
.header-cta {
  display: none;
  padding: 10px 20px; font-size: 13px;
  background: transparent; color: var(--white);
  border: 1px solid var(--white); border-radius: 3px;
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.header-cta:hover { background: rgba(255,255,255,0.15); }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
  padding: 64px 0 72px;
  background: var(--white);
}
@media (min-width: 768px) { .hero { padding: 80px 0 96px; } }
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1fr 0.85fr; gap: 56px; }
}
.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.hero__headline { margin-bottom: 20px; }
.hero__body {
  font-size: 18px; line-height: 1.7;
  color: var(--ink-body);
  max-width: 500px; margin-bottom: 8px;
}
.hero__avail {
  font-size: 14px; font-weight: 600;
  color: var(--accent-warm);
  margin-bottom: 28px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 10px; }
.hero__cta-note { font-size: 13px; color: var(--ink-muted); margin-top: 6px; max-width: 380px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.hero__badge {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted);
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.hero__visual { position: relative; }
.hero__form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.hero__form-card h3 { font-size: 20px; margin-bottom: 4px; }
.hero__form-card .hero-form-sub {
  font-size: 14px; color: var(--ink-muted); margin-bottom: 24px; line-height: 1.5;
}
.hero__form-card .form-fields { display: flex; flex-direction: column; gap: 16px; }
.hero__form-card .field label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 6px;
}
.hero__form-card .field .opt { text-transform: none; font-weight: 400; color: var(--ink-muted); letter-spacing: 0; }
.hero__form-card .field input,
.hero__form-card .field textarea,
.hero__form-card .field select {
  width: 100%; padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--warm-surface);
  border: 1.5px solid transparent; border-radius: 3px;
  transition: all 0.2s;
}
.hero__form-card .field input::placeholder,
.hero__form-card .field textarea::placeholder { color: var(--ink-muted); opacity: 0.6; }
.hero__form-card .field input:focus,
.hero__form-card .field textarea:focus,
.hero__form-card .field select:focus {
  outline: none; background: var(--white);
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(39,182,250,0.1);
}
.hero__form-card .field textarea { min-height: 72px; resize: vertical; }
.hero__form-card .form-submit { margin-top: 4px; }
.hero__form-card .form-submit .btn { width: 100%; padding: 16px; font-size: 15px; }
.hero__form-card .form-note {
  font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 12px; line-height: 1.5;
}
.hero__form-card .form-note a { color: var(--brand-dark); font-weight: 600; }

/* =========================================
   TRUST BAR
========================================= */
.trust-bar { background: var(--dark); padding: 18px 0; }
.trust-bar__inner {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.trust-bar__icon { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }
.trust-bar__text {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* =========================================
   SECTIONS — shared patterns
========================================= */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }
.section--surface { background: var(--surface); }
.section--warm { background: var(--warm-surface); }
.section--white { background: var(--white); }

.section-label {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-intro {
  font-size: 17px; color: var(--ink-body);
  max-width: 560px; margin-bottom: 48px; line-height: 1.7;
}

/* =========================================
   FIRST VISIT — 4 cards
========================================= */
.visit-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 768px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
.visit-card {
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  transition: background 0.3s;
}
.visit-card:hover { background: var(--surface); }
@media (min-width: 768px) {
  .visit-card:nth-child(2) { border-left: none; }
  .visit-card:nth-child(3) { border-top: none; }
  .visit-card:nth-child(4) { border-left: none; border-top: none; }
}
@media (max-width: 767px) { .visit-card + .visit-card { border-top: none; } }
.visit-card__num {
  font-family: var(--font-heading); font-size: 48px; font-weight: 300;
  color: var(--brand); opacity: 0.25; line-height: 1; margin-bottom: 16px;
}
.visit-card p { font-size: 15px; line-height: 1.65; }
.visit-close {
  text-align: center; margin-top: 48px;
  font-size: 19px; font-weight: 500; color: var(--ink);
}

/* =========================================
   PAIN POINTS
========================================= */
.pain-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) { .pain-layout { grid-template-columns: 0.4fr 1fr; gap: 72px; } }
.pain-heading h2 { position: sticky; top: 100px; }
.pain-list { list-style: none; }
.pain-list li {
  font-size: 17px; color: var(--ink-body);
  padding: 18px 0 18px 20px;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.7;
  position: relative;
}
.pain-list li:first-child { border-top: 1px solid var(--border-light); }
.pain-list li::before {
  content: ''; position: absolute; left: 0; top: 26px;
  width: 6px; height: 6px; background: var(--brand); border-radius: 50%;
}
.pain-close {
  margin-top: 32px; font-size: 18px; font-weight: 500;
  color: var(--ink); line-height: 1.6; max-width: 540px;
}

/* =========================================
   SOLUTION
========================================= */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .solution-grid { grid-template-columns: 1fr 1fr; }
}
.solution-content { max-width: 640px; }
.solution-content h2 { margin-bottom: 24px; }
.solution-content p { font-size: 17px; line-height: 1.8; }
.solution-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* =========================================
   MID CTA
========================================= */
.mid-cta {
  padding: 48px 0; text-align: center;
  background: var(--brand-light);
  border-top: 1px solid rgba(39, 182, 250, 0.15);
  border-bottom: 1px solid rgba(39, 182, 250, 0.15);
}
.mid-cta__note { font-size: 13px; color: var(--ink-muted); margin-top: 10px; }

/* =========================================
   CREDENTIALS
========================================= */
.cred-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) { .cred-layout { grid-template-columns: 0.4fr 1fr; gap: 72px; } }
.cred-heading h2 { position: sticky; top: 100px; }
.cred-list { list-style: none; }
.cred-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
  font-size: 16px; line-height: 1.6;
}
.cred-list li:first-child { border-top: 1px solid var(--border-light); }
.cred-list li strong { color: var(--ink); }
.cred-dot {
  width: 6px; height: 6px; background: var(--brand);
  border-radius: 50%; flex-shrink: 0; margin-top: 9px;
}

/* =========================================
   HOW IT WORKS
========================================= */
.steps { max-width: 680px; margin-top: 48px; background: transparent; }
.step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 16px; padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  border-left: none;
  margin-left: 0;
  align-items: start;
  text-align: left;
  position: relative;
}
.step::before { display: none; }
.step:first-child { border-top: 1px solid var(--border-light); }
.step__num {
  font-family: var(--font-heading); font-size: 28px; font-weight: 300;
  color: var(--brand); opacity: 0.4; line-height: 1; padding-top: 2px;
  background: transparent; width: auto; height: auto; border-radius: 0;
  box-shadow: none; position: static; display: block;
}
.step h3 { font-size: 18px; margin-bottom: 4px; }
.step p { font-size: 15px; line-height: 1.6; }

/* === HOW IT WORKS — video layout === */
.how-layout {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 768px) { .how-layout { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
.how-right h2 { margin-bottom: 0; }
.video-col { display: flex; flex-direction: column; gap: 12px; }
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 4px; overflow: hidden;
  background: var(--dark);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-caption {
  font-size: 13px; color: var(--ink-muted); line-height: 1.5;
}

/* =========================================
   FORM (standalone section, below-fold)
========================================= */
.form-section {
  position: relative;
  border-top: 3px solid var(--brand);
}
.form-layout {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 768px) { .form-layout { grid-template-columns: 0.5fr 1fr; gap: 72px; } }
.form-context h2 { margin-bottom: 16px; }
.form-context p { font-size: 16px; line-height: 1.7; }
.form-context__note {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 14px; color: var(--ink-muted); line-height: 1.6;
}
.form-context__note a { color: var(--brand-dark); font-weight: 600; }

.form-fields { display: flex; flex-direction: column; gap: 20px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.field .opt { text-transform: none; font-weight: 400; color: var(--ink-muted); letter-spacing: 0; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--warm-surface);
  border: 1.5px solid transparent; border-radius: 3px;
  transition: all 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); opacity: 0.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; background: var(--white);
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(39,182,250,0.1);
}
.field textarea { min-height: 96px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; padding: 18px; font-size: 16px; }

/* =========================================
   FAQ
========================================= */
.faq-list { max-width: 680px; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--ink); gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--brand);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a__inner { padding: 0 0 20px 0; font-size: 15px; line-height: 1.7; }

/* =========================================
   CTA DARK
========================================= */
.cta-dark {
  padding: 80px 0; text-align: center;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(39,182,250,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-dark h2 { color: var(--white); }
.cta-dark p { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 440px; margin: 0 auto 32px; line-height: 1.7; }
.cta-dark__sub { font-size: 14px; color: rgba(255,255,255,0.35); margin-top: 14px; }
.cta-dark__sub a { color: rgba(255,255,255,0.6); font-weight: 600; }
.cta-dark__sub a:hover { color: var(--white); }

/* =========================================
   LOCATION
========================================= */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
@media (min-width: 768px) { .location-grid { grid-template-columns: 1fr 1.2fr; gap: 56px; } }
.location-row {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}
.location-row:first-child { border-top: 1px solid var(--border-light); }
.location-row strong { color: var(--ink); min-width: 72px; font-weight: 600; }
.location-row a { color: var(--brand-dark); font-weight: 500; }
.location-suburbs { margin-top: 16px; font-size: 13px; color: var(--ink-muted); }
.location-map {
  border-radius: 4px; overflow: hidden; min-height: 300px;
  background: var(--warm-surface);
}
.location-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; }

/* =========================================
   FOOTER
========================================= */
.site-footer { background: var(--dark); padding: 28px 0; text-align: center; }
.site-footer p { color: rgba(255,255,255,0.25); font-size: 12px; letter-spacing: 0.02em; }

/* =========================================
   STICKY MOBILE CTA
========================================= */
.sticky-mobile {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  padding: 10px 16px;
}
.sticky-mobile__inner { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.sticky-mobile .btn { flex: 1; font-size: 13px; padding: 12px 16px; }
@media (max-width: 767px) { .sticky-mobile { display: block; } body { padding-bottom: 68px; } }

/* =========================================
   ANIMATIONS
========================================= */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.stagger > * {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.stagger.vis > * { opacity: 1; transform: translateY(0); }
.stagger.vis > *:nth-child(1) { transition-delay: 0s; }
.stagger.vis > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.vis > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.vis > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.vis > *:nth-child(5) { transition-delay: 0.28s; }

/* =========================================
   THANK YOU PAGES — additional styles
========================================= */

/* Confirmation hero */
.confirmation {
  padding: 80px 0 64px; text-align: center;
}
.confirmation__check {
  width: 64px; height: 64px; margin: 0 auto 28px;
  background: var(--success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scaleIn 0.4s var(--ease) both;
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.confirmation__check svg { width: 28px; height: 28px; color: var(--white); }
.confirmation h1 { margin-bottom: 16px; }
.confirmation__body {
  font-size: 18px; line-height: 1.7;
  max-width: 520px; margin: 0 auto 40px;
}

/* Expect list */
.expect-list {
  list-style: none; text-align: left;
  max-width: 520px; margin: 0 auto;
}
.expect-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
  font-size: 16px; line-height: 1.6;
}
.expect-list li:first-child { border-top: 1px solid var(--border-light); }
.expect-list li strong { color: var(--ink); }
.expect-dot {
  width: 6px; height: 6px; background: var(--brand);
  border-radius: 50%; flex-shrink: 0; margin-top: 9px;
}

/* Booking widget */
.booking-section {
  padding: 64px 0 80px;
  background: var(--warm-surface);
}
.booking-section h2 { text-align: center; }
.booking-section__intro {
  text-align: center; font-size: 17px; line-height: 1.7;
  max-width: 480px; margin: 0 auto 40px;
}
.booking-widget {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  min-height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
}
.booking-widget__placeholder {
  font-size: 14px; font-weight: 500; color: var(--ink-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.booking-widget__note {
  font-size: 14px; color: var(--ink-muted); line-height: 1.6;
  max-width: 360px;
}
.booking-fallback {
  text-align: center; margin-top: 32px;
  font-size: 15px; color: var(--ink-muted);
}
.booking-fallback a { color: var(--brand-dark); font-weight: 600; }

/* Contact section */
.contact-section {
  padding: 64px 0; text-align: center;
}
.contact-section h2 { font-size: clamp(22px, 2.5vw, 28px); margin-bottom: 24px; }
.contact-details {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; font-size: 15px;
}
.contact-details a { color: var(--brand-dark); font-weight: 600; }
.contact-details .hours { color: var(--ink-muted); font-size: 14px; }

/* Progress bar (thank-you-b) */
.progress {
  padding: 20px 0; background: var(--warm-surface);
  border-bottom: 1px solid var(--border-light);
}
.progress__steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
  max-width: 500px; margin: 0 auto;
}
.progress__step {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}
.progress__step--done { color: var(--success); }
.progress__step--active { color: var(--brand); }
.progress__num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: var(--surface); color: var(--ink-muted);
}
.progress__step--done .progress__num { background: var(--success); color: var(--white); }
.progress__step--active .progress__num { background: var(--brand); color: var(--white); }
.progress__line {
  width: 40px; height: 2px; margin: 0 12px;
  background: var(--border-light);
}
.progress__step--done + .progress__line { background: var(--success); }

/* Next step (thank-you-b) */
.next-step {
  padding: 64px 0 48px; text-align: center;
}
.next-step h1 { margin-bottom: 16px; }
.next-step__body {
  font-size: 18px; line-height: 1.7;
  max-width: 520px; margin: 0 auto;
}

/* Thank-you-b booking widget — more prominent */
.booking-section--primary { padding: 0 0 80px; }
.booking-section--primary .booking-widget {
  background: var(--warm-surface);
  border: 2px solid var(--brand);
  padding: 56px 32px;
  min-height: 380px;
}

/* Expect section (thank-you-b) */
.expect-section {
  padding: 64px 0; background: var(--warm-surface);
}
.expect-section h2 { margin-bottom: 32px; }
.expect-section .expect-list { max-width: 100%; }
.expect-meta {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 480px) { .expect-meta { grid-template-columns: 1fr; } }
.expect-meta__item h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.expect-meta__item p { font-size: 15px; line-height: 1.6; }

/* Thank-you page narrower wrap */
.confirmation .wrap,
.next-step .wrap,
.booking-section .wrap,
.expect-section .wrap,
.contact-section .wrap { max-width: 800px; }

/* Fade animations */
.fade-up {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) forwards;
}
.fade-up-d1 { animation-delay: 0.15s; }
.fade-up-d2 { animation-delay: 0.3s; }
.fade-up-d3 { animation-delay: 0.45s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   FLUENT FORMS OVERRIDES
   Match form styling to prototype design
========================================= */
.hero__form-card .fluentform .ff-el-group { margin-bottom: 16px; }
.hero__form-card .fluentform .ff-el-input--label label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 6px;
}
.hero__form-card .fluentform input[type="text"],
.hero__form-card .fluentform input[type="tel"],
.hero__form-card .fluentform input[type="email"],
.hero__form-card .fluentform textarea {
  width: 100%; padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--warm-surface);
  border: 1.5px solid transparent; border-radius: 3px;
  transition: all 0.2s;
}
.hero__form-card .fluentform input:focus,
.hero__form-card .fluentform textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(39,182,250,0.1);
}
.hero__form-card .fluentform .ff_submit_btn_wrapper { margin-top: 4px; }
.hero__form-card .fluentform .ff-btn-submit {
  width: 100%; padding: 16px; font-size: 15px;
  font-family: var(--font-body); font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--brand); color: var(--white);
  border: none; border-radius: 3px; cursor: pointer;
  transition: all 0.25s var(--ease);
}
.hero__form-card .fluentform .ff-btn-submit:hover {
  background: var(--brand-dark); transform: translateY(-1px);
}
/* Hide Fluent Forms powered-by branding */
.fluentform .ff-el-group .ff-el-tooltip,
.fluentform .ff-powered-by { display: none !important; }
/* Name field inline layout */
.hero__form-card .fluentform .ff-name-field-wrapper .ff-t-container {
  display: flex; gap: 12px;
}
.hero__form-card .fluentform .ff-name-field-wrapper .ff-t-cell { flex: 1; }
