/* components.css - Neumorphic, Skeuomorphic & Glassmorphic UI System */

/* ==========================================================================
   1. DYNAMIC ADAPTIVE NAVBAR (Ultra-smooth 60fps/120fps GPU Morph)
   ========================================================================== */
.viva-header-wrap {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.viva-header {
  pointer-events: auto;
  width: 100%;
  max-width: 100%;
  background: rgba(11, 27, 61, 0.94);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: 
    width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s ease,
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
  will-change: transform, width, border-radius;
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0;
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.45s cubic-bezier(0.16, 1, 0.3, 1), width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled State: Transforms smoothly into floating pill */
.viva-header-wrap.is-scrolled .viva-header {
  width: calc(100% - 32px);
  max-width: var(--max);
  transform: translateY(12px);
  border-radius: 9999px;
  background: rgba(11, 27, 61, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.4),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(11, 27, 61, 0.3);
}

.viva-header-wrap.is-scrolled .header-inner {
  width: 100%;
  height: 68px;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .viva-header-wrap.is-scrolled .viva-header {
    width: calc(100% - 16px);
    transform: translateY(8px);
  }
  .header-inner {
    width: calc(100% - 32px);
    height: 72px;
    padding: 0;
  }
  .viva-header-wrap.is-scrolled .header-inner {
    width: 100%;
    height: 60px;
    padding: 0 16px;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.25));
}

@media (min-width: 640px) {
  .brand-logo-img {
    height: 70px;
  }
}

@media (min-width: 1024px) {
  .brand-logo-img {
    height: 78px;
  }
}

.viva-header-wrap.is-scrolled .brand-logo-img {
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(83, 217, 203, 0.25) 0%, rgba(83, 217, 203, 0.1) 100%);
  border: 1px solid rgba(83, 217, 203, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(83, 217, 203, 0.2);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & BACKDROP
   ========================================================================== */
#mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 340px;
  background-color: #0b1b3d;
  background-image: radial-gradient(circle at 100% 0%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 0% 100%, rgba(255, 159, 28, 0.12) 0%, transparent 40%);
  z-index: 85;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 45px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
}

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

#mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 17, 39, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#mobile-menu-backdrop.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ==========================================================================
   2. MOBILE BOTTOM GLASS DOCK
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 16px;
  right: 16px;
  height: 66px;
  background: rgba(11, 27, 61, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  z-index: 60;
  padding: 0 12px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 18px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  body {
    padding-bottom: 0 !important;
  }
  .site-footer-reveal-container {
    background-color: #050f21;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .neu-footer {
    padding-bottom: calc(105px + env(safe-area-inset-bottom, 20px)) !important;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  transition: all 0.2s ease;
  padding: 6px 12px;
  border-radius: 18px;
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
}

.bottom-nav-item.active {
  color: var(--mint);
  background: rgba(83, 217, 203, 0.15);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.bottom-nav-item.highlight-qr {
  position: relative;
  top: -16px;
  background: linear-gradient(180deg, #ff8c70 0%, #ff9f1c 50%, #f08800 100%);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 12px 28px rgba(230, 69, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0b1b3d;
  transition: transform 0.2s ease;
}

.bottom-nav-item.highlight-qr:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   3. SKEUOMORPHIC & NEUMORPHIC PERFORATED VOUCHER BUSINESS CARDS
   ========================================================================== */
.business-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafcfb 100%);
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 1),
    12px 12px 30px rgba(11, 27, 61, 0.08),
    -10px -10px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.business-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 1),
    18px 24px 44px rgba(11, 27, 61, 0.15),
    -12px -12px 30px rgba(255, 255, 255, 1);
  border-color: rgba(83, 217, 203, 0.5);
}

.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  background: #061026;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-card:hover .card-image {
  transform: scale(1.08);
}

.card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 27, 61, 0.4) 100%);
  pointer-events: none;
}

/* Glassmorphic Top Floating Badges */
.card-badge-top-left {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.card-badge-top-right {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.badge-viva-pass {
  background: rgba(11, 27, 61, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(83, 217, 203, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 6px 16px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-viva-agora {
  background: linear-gradient(180deg, #ffb347 0%, #ff522b 100%);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 6px 18px rgba(230, 69, 30, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-sponsored {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.btn-favorite {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 1px white, 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-favorite:hover, .btn-favorite.favorited {
  color: var(--coral);
  background: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(255, 104, 71, 0.35);
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-category {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 800;
  font-size: 11px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #c9791e;
  font-weight: 800;
  font-size: 12px;
  background: #fdf3e2;
  border: 1px solid #f6d49b;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--deep);
  line-height: 1.2;
}

.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Skeuomorphic Perforated Ticket Divider */
.ticket-perforation-divider {
  position: relative;
  margin: 8px -22px 16px -22px;
  height: 20px;
  display: flex;
  align-items: center;
}

.ticket-perforation-divider::before,
.ticket-perforation-divider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--cream);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.ticket-perforation-divider::before {
  left: -8px;
  box-shadow: inset -2px 0 4px rgba(11, 27, 61, 0.1);
}

.ticket-perforation-divider::after {
  right: -8px;
  box-shadow: inset 2px 0 4px rgba(11, 27, 61, 0.1);
}

.ticket-dashed-line {
  width: 100%;
  height: 1px;
  border-top: 2px dashed rgba(83, 217, 203, 0.6);
}

/* Neumorphic Inset / Debossed Savings Box */
.card-savings-box {
  margin-top: auto;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  box-shadow: 
    inset 2px 2px 6px rgba(11, 27, 61, 0.1),
    inset -2px -2px 6px rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(83, 217, 203, 0.3);
}

.savings-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.savings-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--teal);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   4. SKEUOMORPHIC VIVA AGORA FLASH DEAL CARDS (URGENCY BEACON)
   ========================================================================== */
.agora-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffcf8 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 104, 71, 0.35);
  box-shadow: 
    inset 0 1px 1px white,
    0 16px 40px rgba(255, 104, 71, 0.16),
    0 4px 10px rgba(11, 27, 61, 0.05);
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.agora-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    inset 0 1px 2px white,
    0 24px 55px rgba(255, 104, 71, 0.26),
    0 6px 14px rgba(11, 27, 61, 0.08);
  border-color: var(--coral);
}

/* Physical Glowing Bevel Top Ribbon */
.agora-top-ribbon {
  background: linear-gradient(180deg, #ffb347 0%, #f08800 100%);
  color: white;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.05em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 12px rgba(230, 69, 30, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Skeuomorphic Glass Capsule Countdown */
.timer-glass-capsule {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.urgency-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00b4d8;
  display: inline-block;
  box-shadow: 0 0 10px #00b4d8, 0 0 4px white;
  animation: pulseGlow 1.5s infinite;
}

.agora-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0;
}

.price-original {
  font-size: 14px;
  color: #9bb1ae;
  text-decoration: line-through;
  font-weight: 600;
}

.price-viva {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: -0.03em;
}

/* Physical Glowing Neon Tube Gauge */
.stock-indicator-tube {
  height: 10px;
  border-radius: 5px;
  background: #f2e1da;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.18), 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  margin: 12px 0 6px;
  padding: 1.5px;
  border: 1px solid rgba(255, 104, 71, 0.2);
}

.stock-tube-fluid {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f2b752 0%, #ff6847 60%, #f08800 100%);
  box-shadow: 0 0 10px rgba(255, 104, 71, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   5. HYPER-REALISTIC SKEUOMORPHIC LUXURY DIGITAL PASS CARD
   ========================================================================== */
.hologram-pass-card {
  position: relative;
  background: linear-gradient(135deg, #081633 0%, #0f2654 45%, #0b1b3d 100%);
  border-radius: 32px;
  color: white;
  padding: 32px;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.6),
    0 32px 80px rgba(2, 22, 23, 0.6),
    0 10px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(83, 217, 203, 0.4);
  overflow: hidden;
}

/* Metallic Edge Rim Lighting */
.hologram-pass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 217, 120, 0.7) 0%, rgba(83, 217, 203, 0.6) 40%, rgba(255, 255, 255, 0.1) 70%, rgba(244, 188, 66, 0.7) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hologram-sheen {
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    45deg,
    transparent 35%,
    rgba(255, 217, 120, 0.18) 42%,
    rgba(83, 217, 203, 0.22) 50%,
    rgba(255, 104, 71, 0.18) 58%,
    transparent 65%
  );
  transform: rotate(28deg);
  pointer-events: none;
  animation: hologramShift 7s infinite linear;
}

/* 3D Realistic Brass Contact Smart-Chip */
.pass-chip {
  width: 48px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd978 0%, #d49f33 50%, #9c6c18 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -2px 3px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.pass-chip::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 1px, transparent 1px);
  background-size: 10px 10px;
}

.gold-emboss-text {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

/* QR Code Frame with Metallic Bevel */
.pass-qr-frame {
  background: #ffffff;
  padding: 14px;
  border-radius: 22px;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 14px 38px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(244, 188, 66, 0.5);
  display: inline-flex;
}

/* ==========================================================================
   6. NEUMORPHIC DEBOSSED SEARCH & TACTILE RAISED FILTER PILLS
   ========================================================================== */
.neu-search-container {
  background: rgba(11, 27, 61, 0.6);
  border-radius: 22px;
  box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.5), inset -2px -2px 6px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.neu-search-container:focus-within {
  border-color: var(--mint);
  box-shadow: 
    inset 3px 3px 8px rgba(0, 0, 0, 0.6),
    0 0 14px rgba(83, 217, 203, 0.3);
}

.neu-filter-pill {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7f5 100%);
  color: var(--teal);
  border: 1px solid rgba(83, 217, 203, 0.4);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    4px 4px 10px rgba(11, 27, 61, 0.08),
    -4px -4px 10px rgba(255, 255, 255, 0.95);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 12px;
}

.neu-filter-pill:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    6px 6px 14px rgba(11, 27, 61, 0.12),
    -6px -6px 14px rgba(255, 255, 255, 1);
  color: var(--deep);
}

.neu-filter-pill.active {
  background: linear-gradient(180deg, #0a3d40 0%, #0b1b3d 100%);
  color: #ffffff;
  border-color: rgba(83, 217, 203, 0.5);
  box-shadow: 
    inset 3px 3px 6px rgba(0, 0, 0, 0.5),
    inset -2px -2px 4px rgba(255, 255, 255, 0.1),
    0 2px 4px rgba(11, 27, 61, 0.1);
  transform: translateY(1px);
}

/* ==========================================================================
   7. SKEUOMORPHIC QR SCANNER APERTURE FRAME
   ========================================================================== */
.scanner-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 360px;
  margin: 0 auto;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 50%, #0a1c3f 0%, #021213 100%);
  overflow: hidden;
  box-shadow: 
    inset 0 3px 8px rgba(0, 0, 0, 0.8),
    inset 0 -2px 6px rgba(255, 255, 255, 0.1),
    0 24px 65px rgba(0, 0, 0, 0.6);
  border: 4px solid #122b5e;
}

.scanner-viewfinder {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 2px dashed rgba(83, 217, 203, 0.45);
  border-radius: 24px;
}

.scanner-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--mint);
  border-style: solid;
}

.corner-tl { top: -2px; left: -2px; border-width: 4px 0 0 4px; border-top-left-radius: 14px; }
.corner-tr { top: -2px; right: -2px; border-width: 4px 4px 0 0; border-top-right-radius: 14px; }
.corner-bl { bottom: -2px; left: -2px; border-width: 0 0 4px 4px; border-bottom-left-radius: 14px; }
.corner-br { bottom: -2px; right: -2px; border-width: 0 4px 4px 0; border-bottom-right-radius: 14px; }

.scanner-laser {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #90e0ef, #ffffff, #90e0ef, transparent);
  box-shadow: 0 0 18px var(--mint), 0 0 6px white;
  animation: scanLaser 2.2s ease-in-out infinite alternate;
}

/* ==========================================================================
   8. SKEUOMORPHIC RUBBER STAMPS & BADGES
   ========================================================================== */
.rubber-stamp {
  display: inline-block;
  padding: 6px 14px;
  border: 3px solid var(--coral);
  border-radius: 8px;
  color: var(--coral);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: rotate(-6deg);
  box-shadow: 0 2px 4px rgba(255, 104, 71, 0.2);
  mask-image: radial-gradient(circle, black 80%, transparent 100%);
}

.rubber-stamp-mint {
  border-color: var(--mint);
  color: var(--mint);
  transform: rotate(4deg);
}

/* Floating Role Switcher Glass Pill */
.role-switcher-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(11, 27, 61, 0.9);
  border: 1px solid rgba(83, 217, 203, 0.4);
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    0 14px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: 8px;
}

@media (max-width: 768px) {
  .role-switcher-floating {
    bottom: 84px;
    right: 14px;
    padding: 5px 10px;
  }
}

/* ==========================================================================
   6. HERO ORBITAL CAROUSEL (Reference-Inspired Showcase)
   ========================================================================== */
.hero-orbit-stage {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  user-select: none;
}

/* Ambient framing disc */
.hero-halo-backdrop {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: 105%;
  height: 105%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14) 0%, rgba(16, 42, 92, 0.3) 55%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

/* SVG Orbital Arc */
.hero-orbit-arc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

/* Container for the circular showcase discs - Ample space left between carousel and the images */
.hero-discs-wrapper {
  position: absolute;
  top: 16%;
  right: -2%;
  width: 68%;
  height: 68%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* THE WHOLE CIRCLE DIV - Slides smoothly from the right side */
.hero-main-disc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 
    0 32px 80px -15px rgba(0, 0, 0, 0.8),
    0 16px 36px rgba(0, 0, 0, 0.5),
    inset 0 2px 5px rgba(255, 255, 255, 0.5),
    inset 0 -3px 8px rgba(0, 0, 0, 0.6);
  border: 4px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  transform: translate3d(140%, 0, 0) scale(0.92) rotate(4deg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.95s;
  will-change: transform, opacity;
}

.hero-main-disc.is-active {
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 12;
}

.hero-main-disc.is-exiting {
  transform: translate3d(-140%, 0, 0) scale(0.9) rotate(-4deg);
  opacity: 0;
  visibility: visible;
  transition: 
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 11;
}

/* Backward navigation support (when clicking Anterior) */
.hero-main-disc.from-left {
  transform: translate3d(-140%, 0, 0) scale(0.92) rotate(-4deg) !important;
}

.hero-main-disc.to-right {
  transform: translate3d(140%, 0, 0) scale(0.9) rotate(4deg) !important;
  opacity: 0;
  visibility: visible;
  transition: 
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 11;
}

.hero-main-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 65%, rgba(11, 27, 61, 0.2) 100%);
  pointer-events: none;
}

/* Rotary Carousel Wheel - The carousel moves as slides advance */
.hero-orbit-wheel {
  position: absolute;
  left: 68%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 20;
  transform: rotate(var(--wheel-rotation, 0deg));
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Orbital preview thumbnails along the rotating arc */
.hero-orbit-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: #0b1b3d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  pointer-events: auto;
  left: calc(var(--nx) * var(--orbit-r, 265px));
  top: calc(var(--ny) * var(--orbit-r, 265px));
  transform: translate(-50%, -50%) scale(var(--node-scale, 0.9));
  opacity: var(--node-opacity, 0.9);
  transition: 
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-orbit-node:hover {
  transform: translate(-50%, -50%) scale(1.18);
  border-color: var(--mint);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.5);
  z-index: 25;
}

.hero-orbit-node.is-active {
  border-color: #00b4d8;
  border-width: 3px;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.4), 0 14px 35px rgba(0, 0, 0, 0.7);
  animation: orbitPulse 2.6s infinite ease-in-out;
  z-index: 26;
}

.hero-orbit-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(var(--counter-rot, 0deg));
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating tropical leaf depth accents */
.hero-floating-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 28;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.45));
}


/* Dynamic Left Active Story Pill */
.hero-feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .hero-orbit-stage {
    max-width: 480px;
    margin-top: 2rem;
  }
}

@media (max-width: 639px) {
  .hero-orbit-stage {
    max-width: 340px;
    justify-content: center;
  }
  .hero-main-disc {
    width: 78%;
    height: 78%;
    margin-right: auto;
    margin-left: auto;
  }
  .hero-orbit-node {
    width: 44px;
    height: 44px;
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .hero-slide.is-exiting {
    transform: none !important;
  }
  .hero-orbit-node {
    transition: none !important;
    animation: none !important;
  }
  .hero-orbit-node.is-active {
    animation: none !important;
  }
  .hero-floating-leaf {
    animation: none !important;
  }
}

/* ==========================================================================
   7. DISCOVER NEAR YOU (Exact Replica of Reference Design)
   ========================================================================== */
.near-you-section {
  position: relative;
  background-color: #f8fafc;
  overflow: hidden;
}

/* Background Beach Photo Layer - Vivid & Rich */
.near-you-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: saturate(1.08) contrast(1.04);
  opacity: 0.95;
}

.near-you-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 0;
}

.near-you-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0.12) 12%, rgba(248, 250, 252, 0.05) 50%, rgba(248, 250, 252, 0.12) 88%, rgba(248, 250, 252, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Background Organic Decorative Elements (Palm Leaf & Prawn) */
.bg-decor-leaf {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 440px;
  max-width: 45vw;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  opacity: 0.95;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.07));
  transform-origin: top right;
  animation: leafGentleSway 12s ease-in-out infinite alternate;
}

@keyframes leafGentleSway {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(2deg) scale(1.02); }
  100% { transform: rotate(-1.5deg) scale(0.99); }
}

.bg-decor-prawn {
  position: absolute;
  bottom: -75px;
  left: -15px;
  width: 300px;
  max-width: 32vw;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  opacity: 0.92;
  filter: drop-shadow(0 20px 35px rgba(234, 88, 12, 0.16));
  transform-origin: bottom left;
  animation: prawnGentleFloat 14s ease-in-out infinite alternate;
}

@keyframes prawnGentleFloat {
  0% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-6px); }
  100% { transform: rotate(-10deg) translateY(3px); }
}

/* Radar & Map Illustration Graphic */
.near-you-radar-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 120px;
}

.radar-beacon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0088cc;
  box-shadow: 0 0 0 6px rgba(0, 136, 204, 0.25), 0 0 0 14px rgba(0, 136, 204, 0.1);
  animation: radarPulseRing 3s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes radarPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4), 0 0 0 0 rgba(0, 136, 204, 0.2); }
  70% { box-shadow: 0 0 0 18px rgba(0, 136, 204, 0), 0 0 0 36px rgba(0, 136, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0), 0 0 0 0 rgba(0, 136, 204, 0); }
}

.floating-map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.floating-map-pin:hover {
  transform: translateY(-3px) scale(1.08);
}

/* Discover Card Container */
.discover-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.discover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Image Top Section */
.discover-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.discover-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.discover-card:hover .discover-card-img {
  transform: scale(1.06);
}

/* Top Badges */
.discover-top-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.pill-badge-viva-pass {
  background: #0284c7;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.pill-badge-live-now {
  background: #ff7828;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(255, 120, 40, 0.4);
}

.btn-card-favorite {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.btn-card-favorite:hover,
.btn-card-favorite.is-active {
  background: #ffffff;
  color: #ef4444;
  transform: scale(1.1);
}

/* Wavy Gradient Curve Divider */
.discover-card-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 48px;
  pointer-events: none;
  z-index: 5;
}

/* Floating Squircle Category Icon */
.discover-floating-icon {
  position: absolute;
  top: 176px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: transform 0.3s ease;
}

.discover-card:hover .discover-floating-icon {
  transform: scale(1.08);
}

/* Card Body */
.discover-card-body {
  position: relative;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

/* Theme Color Sets */
/* 1. Theme Blue (Restaurants) */
.theme-blue .theme-cat-text { color: #0088cc; }
.theme-blue .theme-icon { color: #0088cc; }
.theme-blue .theme-savings-bg { background-color: rgba(0, 136, 204, 0.08); color: #0088cc; }
.theme-blue .theme-btn-bg { background-color: rgba(0, 136, 204, 0.08); color: #0088cc; }
.theme-blue .theme-btn-bg:hover { background-color: rgba(0, 136, 204, 0.15); }
.theme-blue .theme-arrow-circle { background-color: #0088cc; color: #ffffff; }

/* 2. Theme Green (Boat Tours) */
.theme-green .theme-cat-text { color: #059669; }
.theme-green .theme-icon { color: #059669; }
.theme-green .theme-savings-bg { background-color: rgba(5, 150, 105, 0.08); color: #059669; }
.theme-green .theme-btn-bg { background-color: rgba(5, 150, 105, 0.08); color: #059669; }
.theme-green .theme-btn-bg:hover { background-color: rgba(5, 150, 105, 0.15); }
.theme-green .theme-arrow-circle { background-color: #059669; color: #ffffff; }

/* 3. Theme Purple (Specialty Coffees) */
.theme-purple .theme-cat-text { color: #7c3aed; }
.theme-purple .theme-icon { color: #7c3aed; }
.theme-purple .theme-savings-bg { background-color: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.theme-purple .theme-btn-bg { background-color: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.theme-purple .theme-btn-bg:hover { background-color: rgba(124, 58, 237, 0.15); }
.theme-purple .theme-arrow-circle { background-color: #7c3aed; color: #ffffff; }

/* 4. Theme Azure (Adventure & Sea) */
.theme-azure .theme-cat-text { color: #0284c7; }
.theme-azure .theme-icon { color: #0284c7; }
.theme-azure .theme-savings-bg { background-color: rgba(2, 132, 199, 0.08); color: #0284c7; }
.theme-azure .theme-btn-bg { background-color: rgba(2, 132, 199, 0.08); color: #0284c7; }
.theme-azure .theme-btn-bg:hover { background-color: rgba(2, 132, 199, 0.15); }
.theme-azure .theme-arrow-circle { background-color: #0284c7; color: #ffffff; }

/* Savings Capsule */
.discover-savings-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: auto;
  margin-bottom: 12px;
}

/* Unlock Benefit Button */
.btn-unlock-benefit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 8px 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-unlock-benefit .arrow-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.btn-unlock-benefit:hover .arrow-pill-icon {
  transform: translateX(3px);
}

/* Carousel Nav Controls Dock (Bottom) */
.carousel-nav-dock {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 36px auto 0 auto;
  width: fit-content;
  user-select: none;
}

.carousel-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: #0088cc;
  color: #ffffff;
  border-color: #0088cc;
  transform: scale(1.08);
}

.carousel-dots-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.carousel-dot:hover {
  background: #94a3b8;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 9999px;
  background: #0088cc;
}

/* Scroll Track Styling */
.discover-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 12px;
  padding-top: 6px;
}

.discover-carousel-track::-webkit-scrollbar {
  display: none;
}

.discover-carousel-item {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .discover-carousel-item {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .discover-carousel-item {
    width: calc(25% - 18px);
  }
}

/* ==========================================================================
   8. MORE THAN A DESTINATION SHOWCASE SECTION
   ========================================================================== */
.destination-section {
  position: relative;
  background-color: #f8fafc;
  overflow: hidden;
  padding: 84px 0 110px 0;
  border-bottom: 1px solid #e2e8f0;
}

/* Card item */
.dest-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  position: relative;
  z-index: 10;
}

.dest-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px -10px rgba(15, 23, 42, 0.18), 0 6px 16px rgba(0, 0, 0, 0.06);
}

.dest-card-img-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card:hover .dest-card-img {
  transform: scale(1.07);
}

.dest-card-icon {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
  z-index: 5;
}

.dest-card-body {
  padding: 24px 18px 18px 18px;
}

.dest-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.dest-card-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Sleek Borderless Overlay Card (No white card body, text directly on image) */
.dest-overlay-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.22), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  z-index: 10;
}

.dest-overlay-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 24px 45px -8px rgba(15, 23, 42, 0.3), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dest-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-overlay-card:hover .dest-overlay-img {
  transform: scale(1.08);
}

.dest-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.05) 100%);
  pointer-events: none;
}

.dest-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: #ffffff;
  z-index: 2;
}

.dest-overlay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

/* Subtle Ocean Wave Lines 🌊 (Clean, Modern Flowing Cyan Contours) */
.dest-ocean-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 240px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.9;
  animation: destWaveDrift 18s ease-in-out infinite alternate;
}

@keyframes destWaveDrift {
  0% {
    transform: translateY(0) scaleY(1);
  }
  50% {
    transform: translateY(-8px) scaleY(1.04);
  }
  100% {
    transform: translateY(4px) scaleY(0.97);
  }
}

/* Tiny Floating Bubbles / Water Droplets 🫧 (Subtle Circles with Blur) */
.dest-water-droplets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  overflow: hidden;
}

.dest-droplet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95) 0%, rgba(0, 180, 216, 0.4) 45%, rgba(0, 136, 204, 0.12) 85%);
  border: 1px solid rgba(0, 180, 216, 0.4);
  box-shadow: 0 4px 10px rgba(0, 136, 204, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.dest-droplet-1 {
  animation: destDropletFloat1 7s ease-in-out infinite alternate;
}

.dest-droplet-2 {
  animation: destDropletFloat2 9s ease-in-out infinite alternate;
}

.dest-droplet-3 {
  animation: destDropletFloat3 8s ease-in-out infinite alternate;
}

.dest-droplet-4 {
  animation: destDropletFloat4 10s ease-in-out infinite alternate;
}

@keyframes destDropletFloat1 {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.75; }
  50% { transform: translateY(-12px) translateX(4px) scale(1.08); opacity: 0.95; }
  100% { transform: translateY(-20px) translateX(-3px) scale(0.96); opacity: 0.65; }
}

@keyframes destDropletFloat2 {
  0% { transform: translateY(0) translateX(0) scale(0.95); opacity: 0.6; }
  50% { transform: translateY(-16px) translateX(-5px) scale(1.05); opacity: 0.9; }
  100% { transform: translateY(-26px) translateX(3px) scale(1); opacity: 0.55; }
}

@keyframes destDropletFloat3 {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-10px) translateX(6px) scale(1.1); opacity: 0.95; }
  100% { transform: translateY(-18px) translateX(-4px) scale(0.94); opacity: 0.6; }
}

@keyframes destDropletFloat4 {
  0% { transform: translateY(0) scale(0.9); opacity: 0.65; }
  50% { transform: translateY(-14px) translateX(-4px) scale(1.06); opacity: 0.9; }
  100% { transform: translateY(-22px) translateX(5px) scale(0.98); opacity: 0.5; }
}

/* ==========================================================================
   9. PARALLAX REVEAL & NEUMORPHIC FOOTER
   ========================================================================== */

:root {
  --footer-height: 560px;
}

/* Main content wrapper sitting above the footer */
.site-main-content {
  position: relative;
  z-index: 10;
  background-color: #f8fafc;
  /* Deep elevation shadow cast down onto the revealed footer */
  box-shadow: 0 45px 90px -15px rgba(3, 9, 21, 0.75), 0 20px 40px -10px rgba(11, 27, 61, 0.4);
  /* Rounded bottom lip for modern curtain peel effect */
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  overflow: hidden;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .site-main-content {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    /* Physically reserve scroll distance equal to footer height */
    margin-bottom: var(--footer-height, 560px);
  }
}

@media (min-width: 1024px) {
  .site-main-content {
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }
}

/* Footer Reveal Wrapper: Sits fixed behind the site on desktop */
.site-footer-reveal-container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .site-footer-reveal-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: auto;
  }
}

/* Neumorphic Dark Footer Canvas */
.neu-footer {
  position: relative;
  background: radial-gradient(circle at 50% -20%, #122c5e 0%, #0b1b3d 45%, #050f21 100%);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  padding-top: 76px;
  padding-bottom: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 2px 0 0 rgba(255, 255, 255, 0.12), inset 0 25px 60px rgba(0, 180, 216, 0.06);
}

@media (max-width: 768px) {
  .neu-footer {
    padding-bottom: calc(110px + env(safe-area-inset-bottom, 20px)) !important;
  }
}

/* Internal Parallax Content Container */
.neu-footer-parallax-inner {
  transform: translate3d(0, 0, 0);
  transition: transform 0.12s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.12s ease;
  will-change: transform, opacity;
}

/* --- DARK NEUMORPHIC COMPONENTS --- */

/* Neumorphic Extruded Card (Raised 3D Surface) */
.neu-card {
  background: linear-gradient(145deg, #0e2247, #08152e);
  border-radius: 26px;
  box-shadow: 10px 10px 24px #030a17, -8px -8px 20px rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neu-card:hover {
  transform: translateY(-3px);
  box-shadow: 14px 14px 30px #020712, -10px -10px 24px rgba(255, 255, 255, 0.065);
}

/* Neumorphic Inset Well (Pressed / Debossed) */
.neu-well {
  background: #061124;
  border-radius: 18px;
  box-shadow: inset 4px 4px 10px #020712, inset -3px -3px 8px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Neumorphic Pill Badge */
.neu-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, #0d2042, #08162d);
  box-shadow: 4px 4px 10px #030916, -3px -3px 8px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Neumorphic Title Badge */
.neu-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00b4d8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 12px;
  background: #071328;
  box-shadow: inset 2px 2px 6px #030814, inset -2px -2px 5px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.15);
}

/* Neumorphic Link Item */
.neu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.neu-link:hover {
  color: #38bdf8;
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.4), inset -1px -1px 3px rgba(255, 255, 255, 0.03);
}

.neu-link-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.neu-link:hover .neu-link-dot {
  background: #00b4d8;
  box-shadow: 0 0 8px #00b4d8;
  transform: scale(1.4);
}

/* Neumorphic 3D Buttons */
.neu-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #009ceb 0%, #0088cc 50%, #0077b6 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 6px 6px 16px #030814, -4px -4px 12px rgba(255, 255, 255, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.neu-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 20px #020610, -5px -5px 16px rgba(255, 255, 255, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.6);
  filter: brightness(1.05);
}

.neu-btn-primary:active {
  transform: translateY(1px);
  box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.4), inset -2px -2px 6px rgba(255, 255, 255, 0.2);
}

.neu-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #0e244d, #08152c);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 6px 6px 14px #030814, -4px -4px 10px rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.neu-btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-2px);
  box-shadow: 8px 8px 18px #020610, -5px -5px 14px rgba(255, 255, 255, 0.06);
}

.neu-btn-secondary:active {
  transform: translateY(1px);
  box-shadow: inset 3px 3px 7px #030712, inset -2px -2px 6px rgba(255, 255, 255, 0.04);
}

/* Neumorphic Social Circle */
.neu-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0e244b, #08162e);
  box-shadow: 5px 5px 12px #030814, -4px -4px 10px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.neu-social-btn:hover {
  color: #38bdf8;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 7px 7px 16px #020610, -5px -5px 12px rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 180, 216, 0.35);
}

.neu-social-btn:active {
  transform: translateY(1px) scale(0.96);
  box-shadow: inset 3px 3px 6px #030814, inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

/* Inset Groove Divider */
.neu-groove-divider {
  height: 2px;
  width: 100%;
  background: #040c1c;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  border: none;
  margin: 36px 0 28px 0;
}

/* ==========================================================================
   10. LIGHT NEUMORPHIC FAQ ACCORDION
   ========================================================================== */
.neu-faq-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 8px 8px 22px rgba(11, 27, 61, 0.06), -8px -8px 22px rgba(255, 255, 255, 0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.neu-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 12px 12px 28px rgba(11, 27, 61, 0.09), -10px -10px 26px #ffffff;
  border-color: rgba(0, 136, 204, 0.18);
}

.neu-faq-item[open] {
  background: #ffffff;
  box-shadow: 10px 10px 28px rgba(11, 27, 61, 0.08), -10px -10px 26px #ffffff, 0 0 0 1.5px rgba(0, 136, 204, 0.2);
}

.neu-faq-summary {
  padding: 20px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.neu-faq-summary::-webkit-details-marker {
  display: none;
}

.neu-faq-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f1f5f9;
  box-shadow: inset 2px 2px 5px rgba(11, 27, 61, 0.08), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 27, 61, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #0088cc;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.neu-faq-item[open] .neu-faq-number {
  background: #e0f2fe;
  color: #0284c7;
  box-shadow: inset 2px 2px 5px rgba(2, 132, 199, 0.18), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
}

.neu-faq-btn-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  box-shadow: 4px 4px 10px rgba(11, 27, 61, 0.08), -4px -4px 10px rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0088cc;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.neu-faq-item:hover .neu-faq-btn-toggle {
  color: #0284c7;
  box-shadow: 6px 6px 14px rgba(11, 27, 61, 0.11), -5px -5px 12px rgba(255, 255, 255, 1);
}

.neu-faq-item[open] .neu-faq-btn-toggle {
  transform: rotate(180deg);
  background: #f1f5f9;
  box-shadow: inset 3px 3px 6px rgba(11, 27, 61, 0.12), inset -2px -2px 5px rgba(255, 255, 255, 0.9);
  color: #0284c7;
}

.neu-faq-content-wrapper {
  overflow: hidden;
}

.neu-faq-body {
  padding: 0 22px 22px 22px;
  position: relative;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.neu-faq-item:not([open]) .neu-faq-body {
  opacity: 0;
  transform: translateY(-6px);
}

.neu-faq-item[open] .neu-faq-body {
  opacity: 1;
  transform: translateY(0);
}

.neu-faq-well {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: inset 2px 2px 6px rgba(11, 27, 61, 0.04), inset -2px -2px 6px rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.7);
  font-size: 14px;
  line-height: 1.68;
  color: #475569;
}

@media (max-width: 640px) {
  .neu-faq-summary {
    padding: 16px;
    gap: 12px;
  }
  .neu-faq-body {
    padding: 0 16px 16px 16px;
  }
  .neu-faq-well {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* ==========================================================================
   8. HOW IT WORKS: INTERACTIVE PRODUCT JOURNEY (SELF-CONTAINED LUXURY STAGE)
   ========================================================================== */

.how-it-works-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  padding: 80px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 48px 0;
  }
}

/* Central Neumorphic Step Stage */
.story-stage-neumorphic {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 
    18px 24px 60px rgba(11, 27, 61, 0.07),
    -14px -14px 45px rgba(255, 255, 255, 0.95),
    inset 0 1px 2px rgba(255, 255, 255, 1);
  padding: 44px;
  width: 100%;
  position: relative;
}

@media (max-width: 640px) {
  .story-stage-neumorphic {
    padding: 24px 18px;
    border-radius: 28px;
  }
}

/* Utility: Hide Scrollbar while preserving touch / trackpad scrolling */
.no-scrollbar {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.no-scrollbar::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Narrative Box: CSS Grid stack automatically sizes to the content without dead whitespace */
.story-narrative-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
}

.story-narrative-box .story-step-panel {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  visibility: hidden;
  transition: 
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s ease;
}

.story-narrative-box .story-step-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  z-index: 2;
}

/* Visual Stage on Right */
.story-visual-stage {
  background: linear-gradient(135deg, #091a38 0%, #0b1b3d 60%, #061229 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 24px 50px rgba(11, 27, 61, 0.25);
  position: relative;
  overflow: hidden;
  height: 480px;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .story-visual-stage {
    height: 420px;
  }
}

.story-visual-stage .story-step-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  transition: 
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.45s ease;
}

.story-visual-stage .story-step-panel.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  visibility: visible;
  z-index: 2;
}

.story-panel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.story-step-panel.is-active .story-panel-photo {
  transform: scale(1.08);
}

.story-location-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 15;
  background: rgba(6, 18, 41, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

/* Modern Step Progress Tracker */
.story-progress-dot-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(11, 27, 61, 0.1);
  box-shadow: 2px 2px 6px rgba(11, 27, 61, 0.04), -2px -2px 6px rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.story-progress-dot-btn:hover {
  color: var(--teal);
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-1px);
}

.story-progress-dot-btn.is-active {
  background: linear-gradient(135deg, #0b1b3d 0%, #102a5c 100%);
  color: #ffffff;
  border-color: #00b4d8;
  box-shadow: 0 4px 14px rgba(11, 27, 61, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: scale(1.04);
}

.story-progress-dot-btn.is-active .dot-indicator {
  background: #ff9f1c;
  box-shadow: 0 0 10px #ff9f1c;
}

.story-progress-dot-btn .dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
  transition: all 0.25s ease;
}

/* Auto-Play Timer Bar */
.story-timer-track {
  width: 100%;
  height: 3px;
  background: rgba(11, 27, 61, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 8px;
}

.story-timer-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00b4d8 0%, #ff9f1c 100%);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

/* Radar Scan Line Animation */
@keyframes radarSweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar-sweep-line {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 0;
  transform-origin: bottom right;
  background: linear-gradient(45deg, rgba(0, 180, 216, 0.45) 0%, transparent 70%);
  animation: radarSweep 4s linear infinite;
  border-radius: 100% 0 0 0;
}

.step-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.6;
}

/* ==========================================================================
   FAQ Section - Floating Beach Elements & Ambient Accents
   ========================================================================== */
.faq-beach-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.faq-beach-item {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
  user-select: none;
  -webkit-user-select: none;
}

.faq-beach-item:hover {
  filter: drop-shadow(0 20px 30px rgba(0, 180, 216, 0.32)) brightness(1.05);
  transform: scale(1.1) translateY(-6px) !important;
}

/* Tooltip Badge on Hover */
.faq-beach-item .faq-beach-tooltip {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(11, 27, 61, 0.92);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.4);
}

.faq-beach-item:hover .faq-beach-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Floating Animations */
@keyframes faqFloatChair {
  0%, 100% {
    transform: translateY(0px) rotate(-4deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes faqFloatUmbrella {
  0%, 100% {
    transform: translateY(0px) rotate(5deg);
  }
  50% {
    transform: translateY(-20px) rotate(-3deg);
  }
}

@keyframes faqFloatSurf {
  0%, 100% {
    transform: translateY(0px) rotate(14deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@keyframes faqFloatCoconut {
  0%, 100% {
    transform: translateY(0px) rotate(-6deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

@keyframes faqFloatBall {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(20deg);
  }
}

@keyframes faqFloatStarfish {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-10px) rotate(-8deg) scale(1.05);
  }
}

@keyframes faqBreezePalm {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(4.5deg);
  }
}

.animate-faq-chair {
  animation: faqFloatChair 6.5s ease-in-out infinite;
}

.animate-faq-umbrella {
  animation: faqFloatUmbrella 8s ease-in-out infinite;
}

.animate-faq-surf {
  animation: faqFloatSurf 6s ease-in-out infinite;
}

.animate-faq-coconut {
  animation: faqFloatCoconut 5s ease-in-out infinite;
}

.animate-faq-ball {
  animation: faqFloatBall 5.6s ease-in-out infinite;
}

.animate-faq-starfish {
  animation: faqFloatStarfish 6.8s ease-in-out infinite;
}

.animate-faq-palm-left {
  animation: faqBreezePalm 8.5s ease-in-out infinite;
  transform-origin: top left;
}

.animate-faq-palm-right {
  animation: faqBreezePalm 8.5s ease-in-out infinite 1.8s;
  transform-origin: top right;
}
