/* ═══════════════════════════════════════════════════════════════
   PORT BARTON PARADISE : Shared Components
   Extracted from HTML prototypes (homepage, booking, checkout,
   expedition, transfers). Only components used across 2+ pages.
   ═══════════════════════════════════════════════════════════════ */


/* ─── 1. NAVIGATION ───────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  height: 80px;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
/* Offset the fixed nav below the WordPress admin bar for logged-in users. */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}
.nav.scrolled {
  background: rgba(250,247,241,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--ink-10);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--white);
  transition: color .4s;
}
.nav__brand-mark {
  position: relative;
  flex: none;
  width: 34px; height: 34px;
}
.brand-mark__variant {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .3s ease;
}
.brand-mark__variant--color { opacity: 0; }
.nav__brand-label span { font-weight: 300; opacity: .85; }
.nav.scrolled .nav__brand { color: var(--ocean-deep); }
.nav.scrolled .brand-mark__variant--white,
body.pbp-no-hero .brand-mark__variant--white { opacity: 0; }
.nav.scrolled .brand-mark__variant--color,
body.pbp-no-hero .brand-mark__variant--color { opacity: 1; }

.nav__links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white-90);
  transition: color .4s, opacity .2s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--ink-80); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  background: var(--ocean);
  border-radius: 100px;
  transition: background .3s, transform .2s;
}
.nav__cta:hover { background: var(--ocean-soft); transform: translateY(-1px); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__cart {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--white);
  transition: color .4s;
}
.nav.scrolled .nav__cart, body.pbp-no-hero .nav__cart { color: var(--ink); }
.nav__cart .cart-count {
  position: absolute; top: 1px; right: -2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 700;
  border-radius: 100px;
}
.nav__mobile {
  display: none;
  width: 28px; height: 20px;
  flex-direction: column; justify-content: space-between;
  cursor: pointer;
}
.nav__mobile span {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  transition: background .4s;
}
.nav.scrolled .nav__mobile span { background: var(--ink); }

/* Pages without a dark hero : nav must be readable on light background from the start */
body.pbp-no-hero .nav {
  background: rgba(250,247,241,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--ink-10);
}
body.pbp-no-hero .nav__brand { color: var(--ocean-deep); }
body.pbp-no-hero .nav__links a { color: var(--ink-80); }
body.pbp-no-hero .nav__mobile span { background: var(--ink); }
/* Body padding so content doesn't slip under the fixed nav */
body.pbp-no-hero { padding-top: 80px; }


/* ─── 2. MOBILE MENU ──────────────────────────────────────── */

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 80px;
  flex-shrink: 0;
}
.mobile-menu__brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--ink);
}
.mobile-menu__brand span {
  font-weight: 300;
  font-style: italic;
  opacity: .85;
}
.mobile-menu__close {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: var(--ink-05);
  transition: background .3s;
}
.mobile-menu__close:hover {
  background: var(--ink-10);
}
.mobile-menu__close svg {
  width: 20px; height: 20px;
  stroke: var(--ink);
}
.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  list-style: none;
  gap: 0;
}
.mobile-menu__nav li {
  border-bottom: 1px solid var(--ink-05);
}
.mobile-menu__nav li:first-child {
  border-top: 1px solid var(--ink-05);
}
.mobile-menu__nav a {
  display: block;
  padding: 20px 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  transition: color .2s;
}
.mobile-menu__nav a:hover {
  color: var(--ocean);
}
.mobile-menu__cta {
  padding: 24px var(--gutter) 40px;
  flex-shrink: 0;
}
.mobile-menu__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ocean);
  border-radius: 100px;
  transition: background .3s;
}
.mobile-menu__cta a:hover {
  background: var(--ocean-soft);
}
.mobile-menu__cta a svg {
  width: 18px; height: 18px;
}
body.mobile-menu-open {
  overflow: hidden;
}


/* ─── 3. SECTION LAYOUT ───────────────────────────────────── */

.section {
  padding: clamp(64px, 10vw, 140px) var(--gutter);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 20px;
}
.section__eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: var(--gold);
}
.section__heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section__lead {
  font-size: 17px; font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 600px;
  margin-bottom: 48px;
}
.section__lead a {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─── 4. BUTTONS ──────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px;
  transition: all .3s var(--ease-out);
}
.btn svg { width: 16px; height: 16px; }

.btn--primary {
  background: var(--ocean);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--ocean-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,92,90,.3);
}

.btn--ghost {
  background: var(--white-20);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--white-40);
}

.btn--outline {
  border: 2px solid var(--ocean);
  color: var(--ocean);
}
.btn--outline:hover {
  background: var(--ocean);
  color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }


/* ─── 5. FOOTER ───────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: var(--white-70);
  padding: clamp(48px, 8vw, 100px) var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand span { font-weight: 300; }
.footer__brand-mark {
  position: relative;
  width: 32px; height: 32px;
  display: inline-block;
  vertical-align: -8px;
  margin-right: 10px;
}
/* The footer is always dark, so the white mark applies regardless of the
   page-level (no-hero / scrolled) variant switching above. */
.footer__brand-mark.brand-mark .brand-mark__variant--white { opacity: 1; }
.footer__brand-mark.brand-mark .brand-mark__variant--color { opacity: 0; }
.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-40);
  max-width: 320px;
  margin-bottom: 24px;
}
.footer__heading {
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
/* .footer__col-title is an alias used in some prototypes */
.footer__col-title {
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 14px;
  color: var(--white-40);
  transition: color .3s;
}
.footer__links a:hover { color: var(--white); }
/* .footer__col aliases : same styles, used in homepage prototype */
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--white-40);
  transition: color .3s;
}
.footer__col a:hover { color: var(--white); }
.footer__social {
  display: flex; gap: 12px;
}
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white-70);
  font-size: 14px;
  transition: background .3s, color .3s;
}
.footer__social a:hover {
  background: var(--ocean);
  color: var(--white);
}
/* Parent-company lockup : reuses the Tropical Paradise family logo */
.footer__parent {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  opacity: .8;
  transition: opacity .3s;
}
.footer__parent:hover { opacity: 1; }
.footer__parent-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white-40);
}
.footer__parent img {
  width: 190px; height: auto; display: block;
}
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--white-40);
}
.footer__legal {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px;
}
.footer__cookie-settings {
  padding: 0;
  border: 0;
  color: var(--white-40);
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.footer__cookie-settings:hover,
.footer__cookie-settings:focus-visible {
  color: var(--white);
}
.footer__badges {
  display: flex; align-items: center; gap: 16px;
}
.footer__badge {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
}

/* Cookie preferences remain available from the footer without a floating widget. */
.cky-btn-revisit-wrapper {
  display: none !important;
}
.cky-consent-container .cky-consent-bar,
.cky-modal .cky-preference-center {
  border-radius: 12px !important;
  font-family: var(--sans) !important;
}
.cky-consent-container .cky-consent-bar {
  border-color: var(--sand) !important;
  background: var(--cream) !important;
}
.cky-notice .cky-title,
.cky-preference-header .cky-preference-title {
  color: var(--ink) !important;
  font-family: var(--display) !important;
  font-weight: 500 !important;
}
.cky-btn {
  border-radius: 100px !important;
}
.cky-btn-accept {
  border-color: var(--ocean) !important;
  background: var(--ocean) !important;
}
.cky-btn-reject,
.cky-btn-customize,
.cky-btn-preferences {
  border-color: var(--ocean) !important;
  color: var(--ocean) !important;
}


/* ─── 6. BREADCRUMB ───────────────────────────────────────── */

.breadcrumb {
  max-width: var(--max); margin: 0 auto;
  padding: 20px var(--gutter);
  font-size: 13px; color: var(--ink-40);
}
.breadcrumb a { color: var(--ocean); }
.breadcrumb span { margin: 0 8px; }


/* ─── 7. WHATSAPP FLOAT ───────────────────────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }


/* ─── 8. MOBILE CTA BAR ──────────────────────────────────── */

.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 95;
  padding: 12px 16px;
  background: rgba(250,247,241,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--ink-10);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mobile-cta__inner {
  display: flex; align-items: center; gap: 10px;
  max-width: 480px; margin: 0 auto;
}
.mobile-cta__info {
  flex: 1;
}
.mobile-cta__label {
  font-size: 11px; color: var(--ink-40);
  letter-spacing: .05em; text-transform: uppercase; font-weight: 500;
}
.mobile-cta__price {
  font-family: var(--display);
  font-size: 22px; font-weight: 500; color: var(--ocean);
}
.mobile-cta__price span { font-family: var(--sans); font-size: 12px; color: var(--ink-40); }
.mobile-cta__btn {
  padding: 14px 28px;
  background: var(--ocean); color: var(--white);
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s;
}
.mobile-cta__btn:hover { background: var(--ocean-soft); }
.mobile-cta__wa {
  width: 48px; height: 48px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
  text-decoration: none;
}
.mobile-cta__wa svg { width: 22px; height: 22px; }


/* ─── 9. FORMS ────────────────────────────────────────────── */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--ink-80);
  margin-bottom: 6px;
}
.form-field label .required { color: var(--coral); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  border: 1px solid var(--ink-10);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26,92,90,.1);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-20);
}
.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231C1A17' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field__hint {
  font-size: 12px;
  color: var(--ink-40);
  margin-top: 4px;
}


/* ─── 10. TRUST BADGES ────────────────────────────────────── */

.trust-badges {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-05);
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-40);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--ocean); }


/* ─── 11. TESTIMONIALS ────────────────────────────────────── */

.testimonials {
  background: var(--ocean-deep);
  color: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  padding: 36px;
  background: var(--white-20);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid var(--white-20);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial__text {
  font-family: var(--sans);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--white-90);
  margin-bottom: 20px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white-20);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
}
.testimonial__name {
  font-size: 14px; font-weight: 500;
}
.testimonial__origin {
  font-size: 12px;
  color: var(--white-40);
}


/* ─── 12. FAQ ACCORDION ───────────────────────────────────── */

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--ink-10);
}
.faq__item:first-child {
  border-top: 1px solid var(--ink-10);
}
.faq__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color .3s;
  gap: 20px;
}
.faq__question:hover { color: var(--ocean); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--ink-10);
  transition: transform .4s var(--ease-out), background .3s;
}
.faq__item.active .faq__icon {
  transform: rotate(45deg);
  background: var(--ocean);
  border-color: var(--ocean);
}
.faq__item.active .faq__icon svg { stroke: var(--white); }
.faq__icon svg {
  width: 14px; height: 14px;
  stroke: var(--ink-40);
  transition: stroke .3s;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), padding .5s var(--ease-out);
}
.faq__answer-inner {
  padding: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-60);
  max-width: 680px;
}
.faq__item.active .faq__answer {
  max-height: 300px;
}


/* ─── 13. PROGRESS INDICATOR ──────────────────────────────── */

.progress {
  max-width: 480px;
  margin: 0 auto 8px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.progress__step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-40);
  white-space: nowrap;
}
.progress__step--active {
  color: var(--ocean);
  font-weight: 600;
}
.progress__step--done {
  color: var(--ocean-soft);
}
.progress__num {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  background: var(--ink-05);
  color: var(--ink-40);
  flex-shrink: 0;
}
.progress__step--active .progress__num {
  background: var(--ocean);
  color: var(--white);
}
.progress__step--done .progress__num {
  background: var(--ocean-soft);
  color: var(--white);
}
.progress__line {
  flex: 0 0 48px;
  height: 2px;
  background: var(--ink-10);
  margin: 0 12px;
}
.progress__line--done {
  background: var(--ocean-soft);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE : 1024px
   ═══════════════════════════════════════════════════════════════ */

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

  /* Footer */
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE : 768px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Navigation : hide desktop links, show hamburger */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__cart {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--white);
  transition: color .4s;
}
.nav.scrolled .nav__cart, body.pbp-no-hero .nav__cart { color: var(--ink); }
.nav__cart .cart-count {
  position: absolute; top: 1px; right: -2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 700;
  border-radius: 100px;
}
.nav__mobile { display: flex; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }

  /* Mobile CTA bar : show on small screens */
  .mobile-cta { display: block; }
  .whatsapp-float { bottom: 80px; }
  body { padding-bottom: 72px; }

  /* Forms : single column */
  .form-grid { grid-template-columns: 1fr; }

  /* Progress indicator : hide step labels */
  .progress__step-label { display: none; }
  .progress { gap: 0; }
}
