/* ══════════════════════════════════════════════════════════
   Dr. Hafsa × Philips Zoom — Dedicated Landing Page
   Palette: Rose-gold primary + Philips Zoom purple accent
   Fonts:   Cormorant Garamond (display) + Switzer (body)
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand palette (from drhafsa.ae) */
  --color-bg:            #faf8f5;
  --color-surface:       #ffffff;
  --color-surface-2:     #f5f1ec;
  --color-divider:       #e8e0d8;
  --color-text:          #1c1814;
  --color-text-muted:    #6b6259;
  --color-primary:       #8b4a6b;
  --color-primary-dark:  #6e3854;
  --color-gold:          #c4933a;
  --color-gold-light:    #f5e8d0;
  /* Philips Zoom purple accent (from ad creative) */
  --color-zoom:          #4b3a99;
  --color-zoom-dark:     #3b2d7a;
  --color-zoom-light:    #ede9ff;
  /* Utility */
  --color-whatsapp:      #25d366;
  --color-whatsapp-dark: #1da851;
  --color-dark-bg:       #130d1e;
  --color-dark-text:     #f0ecfa;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Switzer', Inter, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-pill: 999px;

  /* Transitions */
  --tx: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2 * var(--sp-6));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}
.section-title em {
  font-style: italic;
  color: var(--color-primary);
}
.section-title--light { color: #fff; }
.section-title--light em { color: var(--color-gold); }

.section-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: var(--sp-10);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--tx);
  white-space: nowrap;
}
.btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; padding: 1rem; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 74, 107, 0.30);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 74, 107, 0.40);
}
.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.30);
}
.btn--whatsapp svg { width: 20px; height: 20px; }
.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--color-zoom);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-2) var(--sp-6);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar__badge {
  background: var(--color-gold);
  color: #fff;
  padding: 0.15rem 0.65rem;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.topbar__slots { opacity: 0.75; font-size: 0.78rem; }
.topbar__text strong { font-weight: 800; letter-spacing: 0.02em; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1a0f2e 0%, #2d1b5e 50%, #1a0f2e 100%);
  padding: var(--sp-16) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139, 74, 107, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Brand lockup */
.hero__brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  gap: var(--sp-4);
}
.hero__dr-sig {
  display: flex;
  flex-direction: column;
}
.hero__by {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
.hero__dr-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}
.hero__dr-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.hero__philips-logo {
  max-width: 160px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.95;
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-8);
}
.hero__headline em {
  font-style: italic;
  color: var(--color-gold);
}

/* Claim pill */
.hero__claim-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(8px);
}
.hero__timer-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.hero__timer-icon svg { width: 40px; height: 40px; }
.hero__timer-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-gold);
  margin-top: 2px;
  line-height: 1.2;
}
.hero__claim-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__claim-text strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero__claim-text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

/* Powered by */
.hero__powered {
  margin-bottom: var(--sp-6);
}
.hero__powered-bar {
  display: inline-block;
  background: var(--color-zoom);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}
.hero__powered-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Offer box */
.hero__offer {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
}
.hero__offer-left {
  flex: 1;
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.06);
}
.hero__offer-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-3);
}
.hero__offer-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hero__offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-pill);
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  width: fit-content;
}
.hero__offer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-zoom);
  padding: var(--sp-4) var(--sp-6);
  gap: var(--sp-1);
  min-width: 130px;
}
.hero__offer-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.hero__offer-pct {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

/* Trust row */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
.hero__trust-item svg { width: 24px; height: 24px; color: var(--color-gold); }
.hero__trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
}
.hero__bnpl {
  display: flex;
  gap: 4px;
  align-items: center;
}
.hero__tabby {
  background: #2bcd6e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}
.hero__tamara {
  background: #f5a623;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

/* CTA row */
.hero__cta-row {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.hero__disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* Portrait */
.hero__portrait-wrap {
  position: relative;
  z-index: 1;
}
.hero__portrait {
  width: 100%;
  max-width: 420px;
  border-radius: var(--r-lg);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  aspect-ratio: 3/4;
}
.hero__portrait-badge {
  position: absolute;
  bottom: var(--sp-5);
  left: -var(--sp-5);
  left: -20px;
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  box-shadow: 0 8px 24px rgba(196, 147, 58, 0.45);
}
.hero__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.hero__badge-lbl {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery {
  padding: var(--sp-20) 0;
  background: var(--color-bg);
}
.gallery .container { text-align: center; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  text-align: left;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.ba-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--color-surface-2);
}
.ba-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s var(--tx);
}
.ba-pair:hover .ba-img-wrap img { transform: scale(1.04); }
.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.3rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  color: #fff;
  text-align: center;
}
.ba-label--after {
  background: var(--color-gold);
}

/* ── WHY ZOOM (dark section) ─────────────────────────────── */
.why-zoom {
  background: linear-gradient(135deg, #130d1e 0%, #1e1240 100%);
  padding: var(--sp-20) 0;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  text-align: left;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--tx);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 147, 58, 0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--color-gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── PROCESS ─────────────────────────────────────────────── */
.process {
  padding: var(--sp-20) 0;
  background: var(--color-surface-2);
  text-align: center;
}
/* .steps {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--tx);
} */
.steps {
  display: flex;
  align-items: stretch;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
  flex-wrap: nowrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 0;
  max-width: 240px;
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--tx);

  /* Makes all cards fill the row height */
  display: flex;
  flex-direction: column;
}

.step__arrow {
  font-size: 1.5rem;
  color: var(--color-divider);
  align-self: center;
  flex-shrink: 0;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--sp-3);
  opacity: 0.3;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}
.step__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.step__arrow {
  font-size: 1.5rem;
  color: var(--color-divider);
  align-self: center;
  flex-shrink: 0;
  margin-top: -1rem;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: linear-gradient(135deg, #1a0f2e 0%, #2d1b5e 100%);
  padding: var(--sp-20) 0;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  text-align: left;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--tx);
}
.review-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-5);
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.review-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}
.review-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(196, 147, 58, 0.2);
  color: var(--color-gold);
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-pill);
}

/* ── BOOKING ─────────────────────────────────────────────── */
.booking {
  padding: var(--sp-20) 0;
  background: var(--color-bg);
}
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--sp-16);
  align-items: start;
}
.booking__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--sp-6);
}
.booking__title em {
  font-style: italic;
  color: var(--color-primary);
}
.booking__perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.booking__perks li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.95rem;
  color: var(--color-text);
}
.booking__perks svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.booking__urgency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-zoom);
  margin-bottom: var(--sp-8);
  padding: var(--sp-3) var(--sp-4);
  background: var(--color-zoom-light);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--color-zoom);
}
.booking__contact-strip {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.booking__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.booking__contact-item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }
.booking__contact-item a:hover { color: var(--color-primary); }

/* Form */
.booking__right {
  position: sticky;
  top: calc(44px + var(--sp-6));
}
.booking-form {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  border: 1px solid var(--color-divider);
}
.booking-form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--sp-1);
}
.booking-form__sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-6);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.form-group label span { color: var(--color-primary); }
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-divider);
  border-radius: var(--r-sm);
  background: var(--color-surface);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--tx);
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-primary); }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--sp-3);
}
.form-note a {
  color: var(--color-whatsapp);
  font-weight: 600;
  text-decoration: underline;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #0d0a16;
  color: rgba(255,255,255,0.65);
  padding: var(--sp-12) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
}
.footer__philips {
  max-width: 110px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.footer__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__details p {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.85rem;
}
.footer__details svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer__details a:hover { color: #fff; }
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
  justify-content: center;
}
.footer__cta .btn--primary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  box-shadow: none;
}
.footer__cta .btn--primary:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
  transform: none;
  box-shadow: none;
}
.footer__main-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--tx);
}
.footer__main-link:hover { color: #fff; }
.footer__bottom {
  padding: var(--sp-5) 0;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ── WHATSAPP FAB ────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--tx);
  z-index: 90;
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.08) translateY(-2px);
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero__portrait-wrap { order: -1; display: flex; justify-content: center; }
  .hero__portrait { max-width: 340px; aspect-ratio: 3/4; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .booking__inner { grid-template-columns: 1fr; }
  .booking__right { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { display: none; }
  .step { max-width: 100%; width: 100%; }
  .hero__cta-row { flex-direction: column; }
  .hero__brand { flex-direction: column; gap: var(--sp-3); }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ba-img-wrap img { height: 200px; }
  .hero__offer { flex-direction: column; }
  .hero__offer-right { flex-direction: row; justify-content: center; gap: var(--sp-3); padding: var(--sp-4); }
  .topbar { gap: var(--sp-2); }
  .topbar__slots { display: none; }
}
