/* ============================================================
   PLEASURE RIDE COSTA RICA — components.css
   Reusable UI components: header, footer, nav, drawer,
   routes-bar, trust-bar, hero, faq, lightbox, reveal.
   ============================================================ */

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h, 72px);
  background: var(--pr-jungle);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

/* Scrolled state — added by JS */
.site-header.is-scrolled {
  background: rgba(13, 31, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

/* Hidden state — added by JS on scroll-down */
.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Push main content below fixed header */
.site-main {
  padding-top: var(--header-h, 72px);
}

/* Hero sections are full-bleed — they handle their own top padding */
.site-main > .home-hero,
.site-main > .page-hero {
  margin-top: calc(-1 * var(--header-h, 72px));
  padding-top: var(--header-h, 72px);
}

/* ============================================================
   SITE LOGO
   ============================================================ */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pr-gold);
  flex-shrink: 0;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--pr-cream);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.site-logo__name em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  color: rgba(244, 241, 232, 0.5);
  letter-spacing: 0.05em;
}

/* Footer variant */
.site-logo--footer .site-logo__name {
  font-size: 20px;
}
.site-logo--footer .site-logo__name em {
  font-size: 13px;
}

/* ============================================================
   PRIMARY NAV (desktop)
   ============================================================ */
.site-nav { display: none; }

@media (min-width: 1024px) {
  .site-nav { display: flex; }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav__link {
  display: block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244, 241, 232, 0.7);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--pr-cream);
  background: rgba(255, 255, 255, 0.06);
}

.nav__item--active .nav__link {
  color: var(--pr-cream);
}

.nav__item--active .nav__link::after {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--pr-gold);
  border-radius: 1px;
  margin: 2px auto 0;
}

/* "Book now" CTA — always visible */
.nav__cta { flex-shrink: 0; }

/* ============================================================
   MOBILE MENU TOGGLE (hamburger)
   ============================================================ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hide hamburger on desktop */
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

/* Three-bar hamburger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.hamburger::before,
.hamburger::after,
.hamburger {
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  height: 1.5px;
  background: var(--pr-cream);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  width: 100%;
}
.hamburger::before { content: ''; margin-bottom: 0; }
.hamburger::after  { content: ''; }

/* Animated to X when open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  z-index: 200;
  background: var(--pr-jungle);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-xl) var(--space-lg);
}

.mobile-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--pr-cream);
  font-size: 18px;
  align-self: flex-end;
  margin-bottom: var(--space-xl);
  transition: background var(--transition-fast);
}
.mobile-drawer__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Mobile nav list inside drawer */
.mobile-nav {
  list-style: none;
  flex: 1;
}
.mobile-nav li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav a {
  display: block;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(244, 241, 232, 0.8);
  transition: color var(--transition-fast);
}
.mobile-nav a:hover,
.mobile-nav .current-menu-item > a {
  color: var(--pr-cream);
}

.mobile-drawer__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Backdrop */
.mobile-drawer__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(13, 31, 20, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-drawer__backdrop.is-visible { display: block; }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 2px 4px;
}

.lang-switcher a {
  display: block;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(244, 241, 232, 0.55);
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-transform: uppercase;
  text-decoration: none;
}

.lang-switcher a:hover { color: var(--pr-cream); }

.lang-switcher a.lang-current,
.lang-switcher .current-lang a {
  background: rgba(255, 255, 255, 0.12);
  color: var(--pr-cream);
}

/* ============================================================
   TRUST BAR (dark strip — Forest green background)
   ============================================================ */
.trust-bar {
  background: var(--pr-forest);
  padding: var(--space-md) 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(244, 241, 232, 0.7);
}

.trust-item i,
.trust-item svg {
  color: var(--pr-gold);
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================================
   ROUTES BAR (bottom of hero)
   ============================================================ */
.routes-bar {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 31, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}
.routes-bar::-webkit-scrollbar { display: none; }

.routes-bar__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: var(--space-md) var(--space-lg);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: background var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.routes-bar__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.routes-bar__name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(244, 241, 232, 0.75);
}

.routes-bar__price {
  font-size: 11px;
  font-weight: 600;
  color: var(--pr-gold);
  letter-spacing: 0.02em;
}

.routes-bar__reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-md) var(--space-lg);
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px;
  color: rgba(244, 241, 232, 0.55);
  white-space: nowrap;
}

.routes-bar__reviews .stars {
  font-size: 10px;
  letter-spacing: 1px;
}

/* ============================================================
   PAGE LAYOUT (sidebar pattern)
   ============================================================ */
.page-layout__grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .page-layout__grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

.page-layout__main { min-width: 0; }

.page-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Sticky sidebar card */
@media (min-width: 1024px) {
  .sidebar-sticky {
    position: sticky;
    top: calc(var(--header-h, 72px) + var(--space-lg));
  }
}

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--pr-text-muted);
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
}

.filter-tab:hover {
  color: var(--pr-green);
  border-color: var(--pr-green);
}

.filter-tab--active {
  background: var(--pr-green);
  color: var(--pr-cream);
  border-color: var(--pr-green);
}

.filter-tab--active:hover {
  background: var(--pr-green-hover);
  border-color: var(--pr-green-hover);
  color: var(--pr-cream);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header--center {
  text-align: center;
}

.section-header__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}
.section-header__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--pr-gold);
  flex-shrink: 0;
}
.section-header--center .section-header__eyebrow {
  justify-content: center;
}
.section-header--center .section-header__eyebrow::before { display: none; }

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--pr-text-dark);
  margin-bottom: var(--space-sm);
}

.section--dark .section-header__title,
.section--forest .section-header__title {
  color: var(--pr-cream);
}

.section-header__em { font-style: italic; font-weight: 300; color: var(--pr-mint); }

.section-header__subtitle {
  font-size: 15px;
  color: var(--pr-text-muted);
  max-width: 540px;
  line-height: 1.6;
}
.section--dark .section-header__subtitle,
.section--forest .section-header__subtitle {
  color: rgba(244, 241, 232, 0.6);
}
.section-header--center .section-header__subtitle {
  margin: 0 auto;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--pr-forest);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(45, 106, 79, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(13, 31, 20, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-banner__text { flex: 1; min-width: 280px; }

.cta-banner__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-gold);
  margin-bottom: var(--space-sm);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--pr-cream);
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: var(--space-sm);
}

.cta-banner__subtitle {
  font-size: 14px;
  color: rgba(244, 241, 232, 0.6);
  line-height: 1.6;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   HOME HERO — Split editorial: textura oscura izquierda + grid fotos derecha
   ============================================================ */
.home-hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.home-hero__split {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  min-height: 0;
}

@media (min-width: 1024px) {
  .home-hero__split { grid-template-columns: 3fr 2fr; }
}

/* ── Left: fondo oscuro sólido + texturas jungle/grain ─────────────────── */
.home-hero__left {
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h, 72px) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  min-height: 520px;
  background-color: var(--pr-jungle);
  overflow: hidden;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--pr-cream);
  margin-bottom: var(--space-lg);
}

.home-hero__subtitle {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(244, 241, 232, 0.65);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
  max-width: 420px;
}

.home-hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ── Right: grid 2×2 que llena el 100% de la columna ───────────────────── */
.home-hero__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* Fade izquierdo — funde el grid con el panel de texto */
@media (min-width: 1024px) {
  .home-hero__photos::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 48px;
    background: linear-gradient(to right, var(--pr-jungle), transparent);
    z-index: 1;
    pointer-events: none;
  }
}

.home-hero__photo-cell {
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.home-hero__photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.home-hero__photo-cell:hover img { transform: scale(1.05); }

.home-hero__photo-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(13,31,20,0.80), transparent);
  pointer-events: none;
}

.home-hero__photo-label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  z-index: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.9);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(13, 31, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Mobile: stack vertical ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .home-hero__split {
    grid-template-columns: 1fr;
  }
  .home-hero__left {
    min-height: auto;
    padding: calc(var(--header-h, 72px) + var(--space-xl)) var(--container-pad) var(--space-2xl);
  }
  .home-hero__photos {
    height: auto;
    grid-template-rows: 160px 160px;
  }
  .home-hero__photo-cell {
    min-height: 160px;
  }
}

/* ============================================================
   DECORATIVE PALM SVG (hero)
   ============================================================ */
.hero-palm {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(120px, 20vw, 240px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer { background: var(--pr-cream-dark); }

/* Routes quick links bar */
.footer-routes {
  background: var(--pr-white);
  border-top: 1px solid var(--pr-border);
  border-bottom: 1px solid var(--pr-border);
  padding: var(--space-md) 0;
}

.footer-routes__inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-routes__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pr-text-hint);
  white-space: nowrap;
  margin-right: var(--space-sm);
}

.footer-routes__link {
  font-size: 12px;
  font-weight: 500;
  color: var(--pr-text-muted);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--pr-border);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
  white-space: nowrap;
}

.footer-routes__link:hover {
  color: var(--pr-green);
  border-color: var(--pr-green);
  background: rgba(45, 106, 79, 0.04);
}

/* Main footer — dark */
.footer-main {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-main__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .footer-main__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Brand column */
.footer-brand .site-logo { margin-bottom: var(--space-lg); }

.footer-brand__desc {
  font-size: 13px;
  color: rgba(244, 241, 232, 0.5);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.footer-brand__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(244, 241, 232, 0.5);
  transition: color var(--transition-fast);
}
.footer-email:hover { color: var(--pr-cream); }

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(244, 241, 232, 0.4);
}

/* Footer link columns */
.footer-col__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pr-cream);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
}

.footer-nav { list-style: none; }
.footer-nav li + li { margin-top: var(--space-sm); }
.footer-nav a {
  font-size: 13px;
  color: rgba(244, 241, 232, 0.5);
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--pr-cream); }

/* Language switcher in footer */
.footer-lang {
  display: flex;
  gap: var(--space-sm);
}
.footer-lang a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.4);
  transition: color var(--transition-fast);
}
.footer-lang a:hover,
.footer-lang .lang-current { color: var(--pr-cream); }

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--space-md) 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 11px;
  color: rgba(244, 241, 232, 0.3);
  margin-bottom: 0;
}

.footer-bottom__tourus {
  color: var(--pr-mint);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}
.footer-bottom__tourus:hover { opacity: 0.75; }

.footer-bottom__trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 11px;
  color: rgba(244, 241, 232, 0.25);
}
.footer-bottom__trust i {
  font-size: 12px;
  margin-right: 3px;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON (mobile only)
   ============================================================ */
.wa-float {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* Hide on desktop — use inline button instead */
@media (min-width: 1024px) {
  .wa-float { display: none; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--pr-border);
}

.faq-item {
  border-bottom: 1px solid var(--pr-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg) 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pr-text-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

.faq-question:hover { color: var(--pr-green); }

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--pr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--pr-text-muted);
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--pr-green);
  border-color: var(--pr-green);
  color: var(--pr-cream);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer__inner {
  padding-bottom: var(--space-lg);
  font-size: 14px;
  color: var(--pr-text-muted);
  line-height: 1.7;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 20, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pr-cream);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.18); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

[data-reveal-stagger].is-revealed > * { opacity: 1; transform: translateY(0); }

[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 400ms; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
