/* ==========================================================================
   GOLDEN SPARROW LUXURY STYLE SYSTEM
   Theme: Warm Cream & Gold Luxury (Apple VisionOS + luxury editorial)
   ========================================================================== */

:root {
  --bg-cream: #FAF6EE;
  /* Warm off-white background */
  --text-dark: #1E1A15;
  /* Elegant charcoal/brown text */
  --text-muted: #6C665F;
  --text-light: #9B958F;
  --accent-gold: #A97C37;
  /* Refined sparrow gold */
  --accent-gold-light: rgba(169, 124, 55, 0.15);

  /* Blended gradients for experience categories */
  --glow-blue: rgba(184, 218, 240, 0.35);
  --glow-green: rgba(197, 218, 203, 0.35);
  --glow-purple: rgba(220, 210, 238, 0.35);
  --glow-peach: rgba(247, 220, 200, 0.3);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --ease-spring: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: all 0.6s var(--ease-spring);
  --transition-fast: all 0.3s var(--ease-spring);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 15px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

/* Custom Interactive Cursor Glow */
.cursor-glow {
  display: none !important;
  /* Hide custom cursor glow */
}

/* Background Ambient Glow Layers (Pearl white theme with interactive mouse-responsive gradients) */
.ambient-glow-wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  background-color: #FAF6EE;
  /* Pearl white background */
  background-image:
    radial-gradient(circle at calc(90% + var(--glow-x, 0) * 1%) calc(-10% + var(--glow-y, 0) * 1%), rgba(184, 218, 240, 0.45) 0%, transparent 55%),
    /* Blue reflection */
    radial-gradient(circle at calc(10% - var(--glow-x, 0) * 1%) calc(110% - var(--glow-y, 0) * 1%), rgba(220, 214, 247, 0.45) 0%, transparent 55%),
    /* Lavender reflection */
    radial-gradient(circle at calc(50% + var(--glow-x, 0) * 0.5%) calc(50% + var(--glow-y, 0) * 0.5%), rgba(247, 230, 196, 0.3) 0%, transparent 55%);
  /* Champagne gold reflection */
  transition: background-image 1.6s var(--ease-spring);
  will-change: background-image;
}

/* Glass Panels (Apple VisionOS Glassmorphism - 30px Frosted Blur) */
.glass-panel {
  background: rgba(255, 255, 255, 0.42);
  /* Higher transparency */
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  /* Crisp light highlight border */
  box-shadow:
    0 20px 40px 0 rgba(30, 26, 21, 0.04),
    /* Deep soft separation shadow */
    0 1px 3px 0 rgba(30, 26, 21, 0.02),
    inset 0 1px 1.5px 0 rgba(255, 255, 255, 0.8),
    /* Internal gloss glares */
    inset 0 -1px 2px 0 rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

/* Disable CSS transitions on elements animated by GSAP to prevent rendering conflicts */
.main-header,
.search-bar-container,
.destination-detail-box,
.showcase-card,
.showcase-card-preview,
.btn-view-more,
.nest-accordion-panel {
  transition: none !important;
}

/* Apple VisionOS Particles Canvas Styles */
#ambient-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.container {
  max-width: 1440px;
  /* Expanded for luxury breathing space */
  margin: 0 auto;
  padding: 0 6.5rem;
  /* Increased horizontal padding */
  position: relative;
  z-index: 2;
}

/* Premium Editorial Overtitle Tag Labels */
.overtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #B98A45;
  /* Brand warm gold colour */
  margin-bottom: 0.8rem;
}

.overtitle-tag i {
  width: 1.15rem;
  height: 1.15rem;
  color: #B98A45;
  stroke-width: 2.2;
}

/* ==========================================================================
   FLOATING HEADER
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* Let events pass through the outer region */
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease;
}

.header-wrapper.header-hidden {
  transform: translate(-50%, calc(-100% - 1.5rem));
  opacity: 0;
  pointer-events: none;
}

/* Smart hide/show animations for subpage sticky header wrappers */
.packages-header-wrapper,
.destinations-header-wrapper,
.dashboard-header-wrapper,
.detail-header-wrapper {
  position: fixed !important;
  top: 1.25rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 90% !important;
  max-width: 1200px !important;
  z-index: 1000 !important;
  display: flex !important;
  justify-content: center !important;
  pointer-events: none !important;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease !important;
  padding: 0 !important;
}

.packages-header-wrapper.header-hidden,
.destinations-header-wrapper.header-hidden,
.dashboard-header-wrapper.header-hidden,
.detail-header-wrapper.header-hidden {
  transform: translate(-50%, calc(-100% - 1.5rem)) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.main-header,
.packages-header,
.destinations-header,
.dashboard-header,
.detail-header {
  width: 100%;
  height: 4.8rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  pointer-events: auto !important;
}

.main-header.glass-panel {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 20px 40px rgba(30, 26, 21, 0.08),
    0 1px 3px rgba(30, 26, 21, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    /* upper highlight */
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    /* lower reflection */
    inset 0 10px 20px rgba(255, 255, 255, 0.15),
    /* refraction */
    inset 0 0 12px rgba(169, 124, 55, 0.05);
  /* warm golden shimmer */
}

.header-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1.5rem 0 2rem;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: start;
}

.brand-logo {
  transition: transform 0.5s var(--ease-spring);
}

.brand-group:hover .brand-logo {
  transform: rotate(-10deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  justify-self: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  /* Bolder for readability on glass */
  color: #3E3832;
  /* Much darker inactive link color for clear visibility */
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: end;
}

/* Wallet Pill Widget (Distinct card styling with gold border overlay) */
.wallet-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 4px 12px rgba(30, 26, 21, 0.03),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.8),
    inset 0 -1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.wallet-pill:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
  border-color: rgba(169, 124, 55, 0.35);
  box-shadow:
    0 6px 16px rgba(30, 26, 21, 0.06),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.95);
}

.wallet-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(169, 124, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.wallet-icon i {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
}

.wallet-info {
  display: flex;
  flex-direction: column;
}

.wallet-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  /* Darker label for better visibility */
  line-height: 1.1;
}

.wallet-amount,
.fv-wallet-amount {
  display: none !important;
}

.wallet-arrow {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--text-muted);
}

/* Circular Hamburger Button (Opaque Matching Glass Card) */
.btn-menu {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(30, 26, 21, 0.03);
  transition: all 0.3s ease;
}

.btn-menu:hover {
  transform: scale(1.05) translateY(-1px);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(169, 124, 55, 0.35);
  box-shadow: 0 6px 15px rgba(30, 26, 21, 0.06);
}

.btn-menu i {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--text-dark);
}

/* ==========================================================================
   SECTION 01 — HERO (Cinematic Horizontal Gallery)
   ========================================================================== */
.section-hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #070B12;
  /* Dark midnight base */
}

/* Background Gallery Layers */
.hero-bg-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.hero-bg-layer.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(7, 11, 18, 0.3) 0%, rgba(7, 11, 18, 0.85) 100%);
  z-index: 3;
}

.hero-bg-aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% -10%, rgba(0, 240, 160, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 30% -20%, rgba(229, 192, 96, 0.08) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(40px);
}

.hero-bg-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(7, 11, 18, 0.95) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

#hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.55;
}

/* Hero Gallery Container Wrapper */
.hero-gallery-container {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8.5rem 6.5rem 3.5rem 6.5rem;
  box-sizing: border-box;
  pointer-events: none;
}

/* Floating Editorial Header */
.hero-editorial-header {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  transform-origin: left top;
}

.hero-editorial-header .hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.hero-editorial-header .hero-headline .serif-italic {
  font-style: italic;
  color: #E5C060;
  /* Brand gold */
  font-family: var(--font-serif);
}

.hero-editorial-header .hero-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

/* Search Bar (Floating glassmorphic style inside header) */
.hero-editorial-header .search-bar-container {
  width: 100%;
  max-width: 420px;
  height: 3.8rem;
  border-radius: 999px;
  padding: 0.4rem;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s var(--ease-spring);
}

.hero-editorial-header .search-bar-container:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 192, 96, 0.4);
}

.hero-editorial-header .search-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-editorial-header .search-icon {
  width: 2.2rem !important;
  height: 2.2rem !important;
  padding: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #E5C060 !important;
  margin-right: 0.8rem;
}

.hero-editorial-header .search-inner input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  width: 100%;
}

.hero-editorial-header .search-inner input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-editorial-header .btn-search-go {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5C060 0%, #A97C37 100%);
  border: none;
  color: #070B12;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(229, 192, 96, 0.3);
  cursor: pointer;
  transition: transform 0.3s;
}

.hero-editorial-header .btn-search-go:hover {
  transform: scale(1.05);
}

.hero-editorial-header .btn-search-go i {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.5;
  color: #070B12;
}

/* Horizontal Gallery Viewport & Track */
.hero-gallery-viewport {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 62vw;
  height: 520px;
  overflow: visible;
  z-index: 10;
  pointer-events: auto;
}

.hero-gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hero Gallery Card Base */
.hero-gallery-card {
  position: absolute;
  width: 280px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: #121824;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transition: border-color 0.8s, box-shadow 0.8s;
}

/* Card Glow Border for Featured Card */
.hero-gallery-card.active {
  border-color: #E5C060;
  box-shadow: 0 25px 55px rgba(229, 192, 96, 0.22), 0 0 30px rgba(229, 192, 96, 0.12);
}

.gallery-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  box-sizing: border-box;
}

.gallery-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.hero-gallery-card:hover .gallery-card-bg {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 11, 18, 0.95) 0%, rgba(7, 11, 18, 0.3) 60%, transparent 100%);
  z-index: 2;
}

.gallery-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  background: rgba(229, 192, 96, 0.15);
  border: 1px solid rgba(229, 192, 96, 0.3);
  border-radius: 99px;
  padding: 0.3rem 0.6rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.6s;
}

.hero-gallery-card.active .gallery-card-badge {
  opacity: 1;
}

.gallery-card-badge span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  color: #E5C060;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gallery-card-location {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gallery-card-location i {
  width: 0.8rem;
  height: 0.8rem;
  color: #E5C060;
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 400;
  margin-top: 0.2rem;
  transition: font-size 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-gallery-card.active .gallery-card-title {
  font-size: 1.85rem;
}

.gallery-card-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-top: 0.5rem;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.6s, opacity 0.6s;
}

.hero-gallery-card.active .gallery-card-tagline {
  height: 40px;
  opacity: 1;
}

.gallery-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.6s, opacity 0.6s, margin-top 0.6s;
}

.hero-gallery-card.active .gallery-card-footer {
  height: 40px;
  opacity: 1;
  margin-top: 0.8rem;
}

.gallery-card-avatars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-card-avatars .avatar-group {
  display: flex;
}

.gallery-card-avatars .avatar {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 1px solid #121824;
  margin-right: -0.4rem;
}

.gallery-card-travelers-lbl {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.gallery-card-cta-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #E5C060;
  border: none;
  color: #070B12;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(229, 192, 96, 0.3);
  transition: transform 0.3s, background 0.3s;
}

.gallery-card-cta-btn:hover {
  transform: scale(1.1);
  background: #ffffff;
}

.gallery-card-cta-btn span {
  display: none;
  /* Icon button on card */
}

.gallery-card-cta-btn i {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.5;
  color: #070B12;
}

/* Bottom Bar (Stats & line pagination) */
.hero-gallery-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  pointer-events: auto;
}

.hero-gallery-stats {
  display: flex;
  gap: 4rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.hero-stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-gallery-pagination {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-pag-curr,
.hero-pag-total {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.hero-pag-curr {
  color: #E5C060;
}

.hero-pag-line-track {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.hero-pag-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: #E5C060;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-mobile-dots {
  display: none;
}

/* Fullscreen Story Morph Overlay */
.hero-story-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: #070B12;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-story-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-story-overlay .story-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(0.22) blur(10px);
  transform: scale(1.05);
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-story-overlay.active .story-bg-image {
  opacity: 1;
  filter: brightness(0.22) blur(0px);
  transform: scale(1);
}

.hero-story-overlay .story-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, transparent 20%, rgba(7, 11, 18, 0.85) 90%);
  z-index: 2;
}

.btn-story-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn-story-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg) scale(1.05);
}

.btn-story-close i {
  width: 1.2rem;
  height: 1.2rem;
}

.hero-story-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
}

.hero-story-left {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-story-overlay.active .hero-story-left {
  opacity: 1;
  transform: translateY(0);
}

.hero-story-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: #ffffff;
  font-weight: 300;
  margin-top: 0.2rem;
}

.hero-story-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.hero-story-stats-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.story-timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.timeline-icon-box {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(229, 192, 96, 0.1);
  border: 1px solid rgba(229, 192, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5C060;
  flex-shrink: 0;
}

.timeline-icon-box i {
  width: 1rem;
  height: 1rem;
}

.timeline-svg-wrapper {
  width: 90px;
  height: 30px;
  flex-shrink: 0;
}

.timeline-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.timeline-circle-wrapper {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.timeline-circle-svg {
  width: 100%;
  height: 100%;
}

.timeline-meta {
  display: flex;
  flex-direction: column;
}

.timeline-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.timeline-lbl {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Timeline SVG pattern definitions */
svg defs {
  display: block;
  width: 0;
  height: 0;
}

/* Disable CSS transitions on elements animated by GSAP to prevent rendering conflicts */
.hero-gallery-track.is-transitioning .hero-gallery-card,
.hero-gallery-track.is-transitioning .gallery-card-inner {
  transition: none !important;
}

/* Responsive & Mobile styles */
@media (max-width: 768px) {
  .section-hero {
    height: auto;
    min-height: 100vh;
    padding: 7rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-gallery-container {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    pointer-events: auto;
  }

  .hero-editorial-header {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-editorial-header .hero-headline {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
  }

  .hero-editorial-header .hero-subtext {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    max-width: 330px;
  }

  .hero-editorial-header .search-bar-container {
    max-width: 100%;
    height: 3.4rem;
  }

  /* Swiper viewport mobile behavior */
  .hero-gallery-viewport {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100vw;
    height: 440px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
  }

  .hero-gallery-viewport::-webkit-scrollbar {
    display: none;
  }

  .hero-gallery-track {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
    transform: none !important;
    /* Disable JS translation on mobile scroll */
    width: max-content;
  }

  .hero-gallery-card {
    position: relative;
    width: 82vw;
    height: 420px;
    margin-right: -6vw;
    scroll-snap-align: center;
    flex-shrink: 0;
    transform: scale(0.9);
    filter: blur(1.5px);
    opacity: 0.6;
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .hero-gallery-card:first-child {
    margin-left: 9vw;
  }

  .hero-gallery-card:last-child {
    margin-right: 9vw;
  }

  /* Active snapped card */
  .hero-gallery-card.active-snap {
    transform: scale(1.02);
    filter: blur(0px);
    opacity: 1;
    border-color: #E5C060;
  }

  /* Hide arrows or elements on mobile */
  .gallery-card-tagline {
    display: none !important;
  }

  .gallery-card-footer {
    display: flex !important;
    opacity: 1 !important;
    height: auto !important;
    margin-top: 0.5rem !important;
  }

  .hero-gallery-bottom-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
  }

  .hero-gallery-stats {
    display: none;
    /* Hide stats on mobile hero screen */
  }

  .hero-gallery-pagination {
    display: none;
    /* Hide line pagination on mobile */
  }

  /* Circular dots pagination */
  .hero-mobile-dots {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
  }

  .hero-mobile-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.3s, background 0.3s;
    cursor: pointer;
  }

  .hero-mobile-dot.active {
    width: 20px;
    border-radius: 4px;
    background: #E5C060;
  }

  /* Mobile Story overlay details scaling */
  .hero-story-content {
    padding: 0 1.5rem;
  }

  .hero-story-title {
    font-size: 2.6rem;
  }

  .hero-story-stats-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}




/* ==========================================================================
   SECTION 02 — DYNAMIC EXPERIENCE EXPLORER (Apple VisionOS Theme)
   ========================================================================== */
.section-experiences {
  padding: 8rem 0;
  position: relative;
}

.experiences-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Experiences Top Header */
.experiences-header {
  max-width: 600px;
  margin-bottom: 0.5rem;
}

.experiences-header .section-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.experiences-header .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Horizontal Controls Bar */
.experiences-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(30, 26, 21, 0.02);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring), background-color 0.4s var(--ease-spring), color 0.4s var(--ease-spring);
  cursor: pointer;
}

.category-pill i {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2.2;
}

.category-pill:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-dark);
  box-shadow: 0 8px 20px rgba(30, 26, 21, 0.05);
}

/* Category Specific Active Tints & Glows */
/* 1. Adventure (Lavender) */
.category-pill[data-category="adventure"].active {
  background: rgba(220, 214, 247, 0.45);
  border-color: rgba(220, 214, 247, 0.85);
  color: #4C3C88;
  box-shadow: 0 8px 24px rgba(220, 214, 247, 0.25);
}

/* 2. Culture (Champagne Gold) */
.category-pill[data-category="culture"].active {
  background: rgba(247, 230, 196, 0.45);
  border-color: rgba(247, 230, 196, 0.85);
  color: #7E5B1A;
  box-shadow: 0 8px 24px rgba(247, 230, 196, 0.25);
}

/* 3. Coastal (Sky Blue) */
.category-pill[data-category="coastal"].active {
  background: rgba(184, 218, 240, 0.45);
  border-color: rgba(184, 218, 240, 0.85);
  color: #234E75;
  box-shadow: 0 8px 24px rgba(184, 218, 240, 0.25);
}

/* 4. Food & Flavors (Peach) */
.category-pill[data-category="food"].active {
  background: rgba(247, 220, 200, 0.4);
  border-color: rgba(247, 220, 200, 0.85);
  color: #A04C1C;
  box-shadow: 0 8px 24px rgba(247, 220, 200, 0.25);
}

/* 5. Luxury (Pearl Gold) */
.category-pill[data-category="luxury"].active {
  background: rgba(253, 244, 223, 0.45);
  border-color: rgba(253, 244, 223, 0.85);
  color: #8C6615;
  box-shadow: 0 8px 24px rgba(253, 244, 223, 0.25);
}

/* 6. Wildlife (Emerald) */
.category-pill[data-category="wildlife"].active {
  background: rgba(197, 228, 207, 0.45);
  border-color: rgba(197, 228, 207, 0.85);
  color: #195F31;
  box-shadow: 0 8px 24px rgba(197, 228, 207, 0.25);
}

/* Filter Toggle Button */
.btn-filter-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(30, 26, 21, 0.03);
  transition: var(--transition-fast);
}

.btn-filter-toggle:hover {
  background: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 26, 21, 0.06);
}

.btn-filter-toggle.active {
  background: white;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(169, 124, 55, 0.15);
}

.btn-filter-toggle i {
  width: 1.15rem;
  height: 1.15rem;
}

/* Explorer Layout Area */
.experiences-explorer-layout {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  align-items: flex-start;
}

/* Left Sidebar Filters */
.explorer-sidebar {
  width: 290px;
  flex-shrink: 0;
  border-radius: 28px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 45px rgba(30, 26, 21, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  transition: transform 0.6s var(--ease-spring), opacity 0.4s ease, width 0.6s var(--ease-spring), padding 0.6s var(--ease-spring), margin-right 0.6s var(--ease-spring);
}

.explorer-sidebar.collapsed {
  width: 0;
  padding: 0;
  opacity: 0;
  margin-right: -2.5rem;
  overflow: hidden;
  pointer-events: none;
}

.sidebar-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(30, 26, 21, 0.06);
  padding-bottom: 1.2rem;
}

.active-category-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.active-category-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Collapsible Filter Groups */
.filter-group-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.filter-group {
  border-bottom: 1px solid rgba(30, 26, 21, 0.04);
  padding-bottom: 1rem;
}

.filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.4rem 0;
}

.filter-group-header i {
  width: 1rem;
  height: 1rem;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.filter-group.open .filter-group-header i {
  transform: rotate(-180deg);
}

.filter-group-content {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.8rem;
}

.filter-group.open .filter-group-content {
  display: flex;
}

/* Checkboxes */
.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
}

.filter-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  position: relative;
  height: 1.15rem;
  width: 1.15rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(30, 26, 21, 0.15);
  border-radius: 4px;
  transition: all 0.3s var(--ease-spring);
}

.filter-checkbox-label:hover input~.checkbox-custom {
  border-color: var(--accent-gold);
}

.filter-checkbox-label input:checked~.checkbox-custom {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-checkbox-label input:checked~.checkbox-custom:after {
  display: block;
}

/* Reset Button */
.btn-reset-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  margin-top: 0.5rem;
  cursor: pointer;
}

.btn-reset-filters:hover {
  background: white;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(30, 26, 21, 0.04);
}

.btn-reset-filters i {
  width: 0.95rem;
  height: 0.95rem;
}

/* Right Content Area */
.explorer-grid-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.explorer-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.results-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.sort-widget {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sort-widget span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.select-wrapper {
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.4rem 2rem 0.4rem 1rem;
}

.select-wrapper select {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.85rem;
  height: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* 3-Column Experience Story Card Grid */
.explorer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

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

@media (max-width: 768px) {
  .explorer-grid {
    grid-template-columns: 1fr;
  }

  .experiences-explorer-layout {
    flex-direction: column;
  }

  .explorer-sidebar {
    width: 100%;
  }
}

/* Premium Story Card Styling (Apple VisionOS Liquid Glassmorphism) */
.story-card {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(35px) saturate(145%);
  -webkit-backdrop-filter: blur(35px) saturate(145%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 15px 35px rgba(30, 26, 21, 0.02),
    inset 0 1px 2px rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  height: 390px;
  /* Uniform height supporting circular button */
  transition: transform 0.6s var(--ease-spring), box-shadow 0.6s ease, border-color 0.4s ease, background-color 0.4s ease;
  cursor: pointer;
}

.story-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 24px 50px rgba(30, 26, 21, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.95);
}

.story-card-image-wrapper {
  width: 100%;
  height: 52%;
  overflow: hidden;
  position: relative;
  border-radius: 32px 32px 0 0;
}

.story-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Floating Bookmark Icon Button */
.story-bookmark-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(30, 26, 21, 0.03);
  z-index: 5;
  cursor: pointer;
  transition: var(--transition-fast);
}

.story-bookmark-btn:hover {
  background: white;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(30, 26, 21, 0.06);
}

.story-bookmark-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: white;
}

.story-bookmark-btn i {
  width: 0.95rem;
  height: 0.95rem;
}

/* Card Content Details */
.story-card-content {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.story-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Card category tags specific accents */
.story-card.accent-adventure .story-card-badge {
  color: #5D4E8C;
}

.story-card.accent-culture .story-card-badge {
  color: #8C6615;
}

.story-card.accent-coastal .story-card-badge {
  color: #35597A;
}

.story-card.accent-food .story-card-badge {
  color: #A04C1C;
}

.story-card.accent-luxury .story-card-badge {
  color: #7E5B1A;
}

.story-card.accent-wildlife .story-card-badge {
  color: #195F31;
}

.story-card-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.story-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.story-card-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: auto;
  /* Push footer elements to bottom */
}

/* Card footer details metadata */
.story-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(30, 26, 21, 0.04);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}

.story-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

.story-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.story-card-meta i {
  width: 0.85rem;
  height: 0.85rem;
}

.story-explore-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(30, 26, 21, 0.02);
}

.story-explore-btn:hover {
  background: white;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(30, 26, 21, 0.05);
  color: #956B2D;
}

.story-explore-btn i {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.3s ease;
}

.story-card:hover .story-explore-btn i {
  transform: translateX(2px);
}

/* Category Specific Hover Shadow Glows for Liquid Glass Cards */
.story-card.accent-adventure:hover {
  box-shadow:
    0 24px 50px rgba(93, 78, 140, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(93, 78, 140, 0.35);
}

.story-card.accent-culture:hover {
  box-shadow:
    0 24px 50px rgba(140, 102, 21, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(140, 102, 21, 0.35);
}

.story-card.accent-coastal:hover {
  box-shadow:
    0 24px 50px rgba(53, 89, 122, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(53, 89, 122, 0.35);
}

.story-card.accent-food:hover {
  box-shadow:
    0 24px 50px rgba(160, 76, 28, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(160, 76, 28, 0.35);
}

.story-card.accent-luxury:hover {
  box-shadow:
    0 24px 50px rgba(126, 91, 26, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(126, 91, 26, 0.35);
}

.story-card.accent-wildlife:hover {
  box-shadow:
    0 24px 50px rgba(25, 95, 49, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(25, 95, 49, 0.35);
}

/* Load More Dynamic Footer widget */
.explorer-grid-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

.btn-load-more {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 6px 16px rgba(30, 26, 21, 0.03);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-load-more:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 26, 21, 0.06);
}

.btn-load-more i {
  width: 1.05rem;
  height: 1.05rem;
}


/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  border-top: 1px solid rgba(30, 26, 21, 0.03);
  padding: 2.5rem 0;
  background: rgba(255, 255, 255, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.8rem;
}

.footer-links a:hover {
  color: var(--text-dark);
}

/* Media Queries (Ensure Desktop Focus) */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-right {
    justify-content: center;
  }

  .experiences-container {
    flex-direction: column;
    gap: 2rem;
  }

  .experiences-left-header {
    position: relative;
    top: 0;
    flex: 1;
  }
}

/* ==========================================================================
   OFFERS SECTION (Luxury Editorial Magazine Edition)
   ========================================================================== */
.section-offers {
  background-color: #F8F5F0;
  /* Soft ivory white background */
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.offers-magazine-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6.5rem;
  position: relative;
  z-index: 2;
}

.offers-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Left Column Editorial Panel */
.offers-editorial-panel {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1.5rem;
}

.offers-editorial-panel .offers-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.0rem, 3.8vw, 4.0rem);
  line-height: 1.06;
  font-weight: 400;
  color: #2C251E;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  width: fit-content;
}

/* Gold accent underline below heading */
.offers-editorial-panel .offers-headline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 2.5px;
  background: linear-gradient(90deg, #B98A45 0%, rgba(185, 138, 69, 0) 100%);
  border-radius: 99px;
}

.offers-editorial-panel .offers-subtext {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.6rem;
  max-width: 320px;
}

.offers-editorial-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.btn-offers-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: #B98A45;
  /* Curated Gold brand color */
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(185, 138, 69, 0.25);
  transition: var(--transition-fast);
  cursor: pointer;
  width: fit-content;
  position: relative;
  z-index: 10;
}

.btn-offers-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(185, 138, 69, 0.4);
  background: #956B2D;
}

.btn-offers-view-all i {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2.2;
  transition: transform 0.3s ease;
}

.btn-offers-view-all:hover i {
  transform: translateX(4px);
}

.offers-plane-deco {
  width: 130px;
  height: 60px;
  pointer-events: none;
  opacity: 0.85;
}

/* Category Pills Navigation (Spans Columns 2 & 3) */
.offers-pills-row {
  grid-column: 2 / span 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.2rem;
  margin-bottom: 0.5rem;
}

.offers-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0.45rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(30, 26, 21, 0.02);
}

.offers-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.offers-pill:hover {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.55);
}

.offers-pill.active {
  background: #ffffff;
  color: #B98A45;
  box-shadow:
    0 6px 15px rgba(185, 138, 69, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.offers-pill i {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
}

/* Cards Row 1 (Right Container) */
.offers-row-cards-top {
  grid-column: 2 / span 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

/* Generic Offer Card Styles */
.offer-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 12px 30px rgba(30, 26, 21, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  cursor: pointer;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease, border-color 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(185, 138, 69, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.95);
  border-color: rgba(185, 138, 69, 0.25);
}

.offer-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.offer-card:hover .offer-card-bg {
  transform: scale(1.05);
}

.offer-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.offer-card-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  z-index: 5;
}

.offer-card-badge i {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2.2;
  color: #B98A45;
}

.offer-card-content {
  margin-top: auto;
  padding: 1.8rem;
  position: relative;
  z-index: 3;
  color: white;
}

.offer-card .card-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 0.4rem;
}

.offer-card .card-discount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFC966;
  /* Gold discount highlight */
}

.offer-card .card-subtext {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}

.btn-card-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition-fast);
}

.offer-card:hover .btn-card-arrow {
  background: #ffffff;
  color: #B98A45;
  transform: rotate(-45deg) scale(1.05);
  box-shadow: 0 6px 14px rgba(185, 138, 69, 0.2);
}

.btn-card-arrow i {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.2;
}

/* Card Type 01 (Scenic Beach Mode Icons) */
.card-scenic .card-title {
  color: white;
}

.card-travel-modes {
  display: flex;
  gap: 0.4rem;
}

.card-travel-modes .mode-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.card-travel-modes .mode-icon i {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2.0;
}

.offer-card:hover .card-travel-modes .mode-icon {
  background: rgba(255, 255, 255, 0.3);
}

/* Card Type 02 (Resort with Curved Cutout) */
.card-split-resort {
  overflow: visible !important;
}

.card-split-resort .offer-card-bg,
.card-split-resort .offer-card-overlay {
  border-radius: 32px;
}

.card-curved-cutout {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: #ffffff;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 32px;
  padding: 0.8rem 1.6rem;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 4px -4px 15px rgba(0, 0, 0, 0.02);
}

.card-curved-cutout::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at top right, transparent 20px, #ffffff 20px);
  pointer-events: none;
}

.card-curved-cutout::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at top right, transparent 20px, #ffffff 20px);
  pointer-events: none;
}

.amritara-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.amritara-logo svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #4B6F44;
  /* Resort organic green */
  fill: rgba(75, 111, 68, 0.12);
}

.amritara-logo span {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

/* Card Type 03 (Partnership Card) */
.card-partnership {
  background: rgba(255, 255, 255, 0.85);
  /* Frosted light glass */
  justify-content: center;
  align-items: stretch;
  padding: 2.2rem;
}

.partnership-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 3;
  text-align: center;
}

.onecircle-logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.onecircle-ring {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #00A896, #028090, #05668D, #00A896);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(2, 128, 144, 0.2);
  animation: rotateRing 16s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.onecircle-core {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.onecircle-brand {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.card-partnership .card-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.card-partnership .card-subtext {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2.2rem;
}

.card-partnership .btn-card-arrow {
  margin: 0 auto;
}

/* Card Type 04 (Editorial Split Landscape Card) */
.card-editorial-split {
  grid-column: 1 / span 1;
  grid-row: 3;
  display: grid !important;
  grid-template-columns: 1.1fr 1fr;
  min-height: 260px !important;
  max-height: 260px;
  background: #ffffff;
}

.card-split-left {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  z-index: 3;
}

.split-left-content {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-editorial-split .card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.card-editorial-split .card-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.split-left-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  width: 100%;
}

.ramoji-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ramoji-bold {
  font-size: 0.95rem;
  font-weight: 700;
  color: #8C1D40;
  /* Ramoji identity maroon */
  letter-spacing: 0.05em;
}

.ramoji-light {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

.card-split-right {
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 0 32px 32px 0;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-editorial-split:hover .card-split-right {
  transform: scale(1.04);
}

/* Card Type 05 (Floating Deal Card Landscape) */
.card-floating-deal {
  grid-column: 2 / span 1;
  grid-row: 3;
  min-height: 260px !important;
  max-height: 260px;
}

.card-floating-deal .card-title {
  font-size: 1.45rem;
}

/* Card Type 06 (Premium Member Card Landscape) */
.card-premium-member {
  grid-column: 3 / span 1;
  grid-row: 3;
  min-height: 260px !important;
  max-height: 260px;
  background: linear-gradient(135deg, rgba(30, 26, 21, 0.92) 0%, rgba(15, 12, 10, 0.96) 100%);
  border: 1px solid rgba(169, 124, 55, 0.35);
  /* Gold outline highlight */
}

.card-premium-member .card-title {
  font-size: 1.45rem;
  background: linear-gradient(135deg, #FFF0D6 0%, #D8B582 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Disable transitions animated by GSAP to avoid conflicts */
.offer-card,
.btn-card-arrow,
.card-split-right,
.offers-pill {
  transition: none !important;
}

/* Responsive Magazine Grid Layouts */
@media (max-width: 1100px) {
  .offers-magazine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .offers-editorial-panel {
    grid-column: 1 / span 2;
    grid-row: auto;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .offers-pills-row {
    grid-column: 1 / span 2;
    grid-row: auto;
    justify-content: flex-start;
  }

  .offers-row-cards-top {
    grid-column: 1 / span 2;
    grid-row: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .card-editorial-split,
  .card-floating-deal,
  .card-premium-member {
    grid-column: span 1;
    grid-row: auto;
  }

  .card-editorial-split {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .section-offers {
    padding: 3rem 0 !important;
  }

  .offers-magazine-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .section-offers .gs-section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  .section-offers .gs-section-title {
    text-align: center !important;
    width: 100% !important;
  }

  .offers-magazine-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .offers-editorial-panel {
    grid-column: 1 !important;
    align-items: center !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  .offers-subtext {
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 1.5rem !important;
  }

  .offers-editorial-cta-group {
    justify-content: center !important;
    width: 100% !important;
  }

  .offers-plane-deco {
    display: none !important;
  }

  .offers-pills-row {
    grid-column: 1 !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0 !important;
  }

  .offers-pills {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
    padding: 1.25rem !important;
    border-radius: 36px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 10px 30px rgba(30, 26, 21, 0.04) !important;
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 auto !important;
  }

  .offers-pill {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 0.55rem 1rem !important;
    font-size: 0.82rem !important;
    border-radius: 99px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    color: #555555 !important;
    transition: all 0.3s ease !important;
  }

  .offers-pill.active {
    background: #FFFFFF !important;
    border: 1.5px solid #B98A45 !important;
    color: #B98A45 !important;
    box-shadow: 0 4px 10px rgba(185, 138, 69, 0.1) !important;
    font-weight: 700 !important;
  }

  .offers-pill.active i {
    color: #B98A45 !important;
  }

  .offers-pill i {
    width: 0.9rem !important;
    height: 0.9rem !important;
    color: #555555 !important;
  }

  .offers-row-cards-top {
    grid-column: 1 !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }

  .card-editorial-split,
  .card-floating-deal,
  .card-premium-member {
    grid-column: 1 !important;
  }

  .card-editorial-split {
    grid-template-columns: 1fr !important;
    max-height: none !important;
    min-height: auto !important;
  }

  .card-split-right {
    height: 200px !important;
    border-radius: 0 0 32px 32px !important;
  }

  .card-floating-deal,
  .card-premium-member {
    max-height: none !important;
  }

  /* Centering of text inside offer cards */
  .offer-card {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 380px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .offer-card-badge {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 1.2rem !important;
  }

  .offer-card-content {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.8rem 1.25rem !important;
    margin-top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .offer-card-content .card-title {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 0.25rem !important;
  }

  .offer-card-content .card-discount {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 1.25rem !important;
  }

  /* OneCircle Partnership Card left-aligned and compact */
  .card-partnership {
    min-height: auto !important;
    height: auto !important;
    padding: 4.8rem 1.8rem 1.8rem !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .card-partnership .offer-card-badge {
    left: 1.8rem !important;
    transform: none !important;
  }

  .partnership-inner {
    width: 100% !important;
    height: auto !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
  }

  .partnership-inner .card-title,
  .partnership-inner .card-subtext {
    text-align: left !important;
    width: 100% !important;
  }

  .onecircle-logo-group {
    align-items: flex-start !important;
    margin-bottom: 1.5rem !important;
  }

  .partnership-inner .btn-card-arrow {
    margin: 1.25rem 0 0 auto !important;
  }

  /* Scenic and split cards footers */
  .card-footer-row {
    width: 100% !important;
    justify-content: flex-end !important;
  }

  /* Split editorial card */
  .card-split-left {
    padding: 4.8rem 1.8rem 1.8rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
  }

  .card-editorial-split .offer-card-badge {
    left: 1.8rem !important;
    transform: none !important;
  }

  .split-left-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 0.5rem !important;
  }

  .split-left-content .card-title,
  .split-left-content .card-subtext {
    text-align: left !important;
    width: 100% !important;
  }

  .split-left-footer {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    margin-top: 1.5rem !important;
  }

  .ramoji-logo {
    justify-content: flex-start !important;
  }
}


/* ==========================================================================
   FLOATING GLASS TRUST BAR
   ========================================================================== */
.trust-bar-container {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 0 6.5rem;
}

.trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(30px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 40px 0 rgba(30, 26, 21, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Moving light sweep shimmer for trust bar */
.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  animation: searchSweep 7s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.trust-capsule {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.trust-capsule:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 26, 21, 0.06);
}

.trust-capsule i {
  width: 1.5rem;
  height: 1.5rem;
  color: #B98A45;
  /* Warm gold icons */
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.trust-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.trust-desc {
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(30, 26, 21, 0.55);
  line-height: 1.25;
  margin-top: 0.15rem;
}

@media (max-width: 992px) {
  .trust-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }

  .trust-capsule {
    width: calc(50% - 1.2rem);
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .trust-capsule {
    width: 100%;
  }
}

/* ==========================================================================
   NEST BALANCE INTERACTIVE SECTION (Immersive Split Screen Layout)
   ========================================================================== */
.section-nest-balance {
  background-color: #FAF6EE;
  /* solid luxury cream white background */
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.nest-balance-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 4rem !important;
  margin: 0 auto;
}

.gs-section-header {
  margin-bottom: 3.5rem;
  padding-left: 0.5rem;
}

.gs-section-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  margin: 0;
}

.gs-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(169, 124, 55, 0) 100%);
  border-radius: 2px;
}

.experiences-container .gs-section-header {
  margin-bottom: 0.5rem;
}

@media (max-width: 1100px) {
  .gs-section-header {
    padding-left: 0;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .gs-section-title {
    font-size: 2.8rem;
  }
}

.nest-panel {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 40px !important;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 40px 0 rgba(30, 26, 21, 0.02);
  padding: 4.5rem !important;
  position: relative;
  overflow: hidden;
}

/* Left Column (Editorial & Interactive Controls) */
.nest-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nest-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.06;
  font-weight: 400;
  color: #2C251E;
  margin: 0;
}

.nest-subtext {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0;
}

/* Step Indicators Row */
.nest-steps-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  margin: 1.5rem 0;
  width: 100%;
  position: relative;
}

.nest-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(169, 124, 55, 0.15);
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.nest-step-indicator.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(185, 138, 69, 0.2);
}

.nest-step-indicator.active .step-title {
  color: #FFFFFF;
}

.nest-step-indicator.active i {
  color: #FFFFFF;
}

.nest-step-indicator i {
  color: var(--text-muted);
  width: 15px;
  height: 15px;
  transition: color 0.3s ease;
}

.nest-step-indicator:hover:not(.active) {
  border-color: var(--accent-gold);
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(169, 124, 55, 0.08);
}

.step-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

/* Sleek Slider Box */
.nest-slider-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(185, 138, 69, 0.02);
}

.slider-header,
.duration-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-label,
.duration-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slider-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #B98A45;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.slider-ticks span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
}

#nest-slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(169, 124, 55, 0.25) 0%, rgba(169, 124, 55, 0.06) 100%);
  outline: none;
  margin: 1.25rem 0 1.25rem;
}

#nest-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3.5px solid #FFFFFF;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(169, 124, 55, 0.4);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
}

#nest-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 6px 20px rgba(169, 124, 55, 0.6);
}

/* Premium Savings Visualizer */
.premium-savings-visualizer {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(10px);
}

.visualizer-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.match-metric .metric-value {
  color: #10AC84;
}

.visualizer-bar-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(30, 26, 21, 0.04);
  display: flex;
  overflow: hidden;
}

.visualizer-bar-user {
  height: 100%;
  background: linear-gradient(90deg, #D4AF37 0%, var(--accent-gold) 100%);
  border-radius: 4px 0 0 4px;
}

.visualizer-bar-match {
  height: 100%;
  background: linear-gradient(90deg, #10AC84 0%, #2ED573 100%);
  border-radius: 0 4px 4px 0;
}

.duration-pills {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.dur-pill {
  border: 1px solid rgba(185, 138, 69, 0.2);
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dur-pill:hover {
  background: rgba(255, 255, 255, 0.9);
}

.dur-pill.active {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Premium Projection Cards */
.premium-projection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.projection-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.projection-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(169, 124, 55, 0.04);
}

.projection-card.highlight {
  background: linear-gradient(135deg, rgba(169, 124, 55, 0.08) 0%, rgba(169, 124, 55, 0.02) 100%);
  border-color: rgba(169, 124, 55, 0.25);
}

.proj-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proj-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Travel Summary Ticket Card */
.travel-summary-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(169, 124, 55, 0.18);
  border-radius: 20px;
  padding: 1.8rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(30, 26, 21, 0.03);
  overflow: hidden;
}

.travel-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, #10AC84 100%);
}

.travel-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.travel-sum-row:not(:last-child) {
  border-bottom: 1px dashed rgba(169, 124, 55, 0.15);
}

.travel-sum-row span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.travel-sum-row strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.travel-sum-row strong.accent-gold-text {
  color: var(--accent-gold);
}

/* Minimal Trust Row */
.nest-trust-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-pill i {
  color: #10AC84;
  width: 14px;
  height: 14px;
}

/* Right Column (Massive Immersive Visual Showcase) */
.nest-right-col {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nest-showcase-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(30, 26, 21, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.showcase-images-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.showcase-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
}

.showcase-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Stacked Card Deck */
.unlocked-stack-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.unlocked-card-deck {
  position: relative;
  width: 330px;
  height: 450px;
  margin-top: -10px;
}

.unlocked-stacked-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 24, 21, 0.95);
  border: 1.5px solid rgba(185, 138, 69, 0.25);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, border-color 0.3s ease;
  pointer-events: auto;
  color: #FFFFFF;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.unlocked-stacked-card:hover {
  border-color: rgba(185, 138, 69, 0.6);
}

.card-stack-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-category-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-category-icon i {
  color: var(--accent-gold);
  width: 16px;
  height: 16px;
}

.card-travel-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card-travel-btn:hover {
  transform: scale(1.15) rotate(45deg);
  background: #A37637;
}

.card-travel-btn i {
  color: #FFFFFF;
  width: 14px;
  height: 14px;
}

.card-stack-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  text-align: center;
  color: #FFFFFF;
  margin: 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0.4rem 0;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: rgba(16, 172, 132, 0.95);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.card-stack-desc {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0.4rem 0 0;
}

/* Card positions inside the stack */
.unlocked-stacked-card.position-0 {
  z-index: 10;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.unlocked-stacked-card.position-1 {
  z-index: 9;
  transform: translate3d(10px, 15px, 0) scale(0.95) rotate(3deg);
  opacity: 0.9;
}

.unlocked-stacked-card.position-2 {
  z-index: 8;
  transform: translate3d(-15px, 25px, 0) scale(0.9) rotate(-4deg);
  opacity: 0.75;
}

.unlocked-stacked-card.position-3 {
  z-index: 7;
  transform: translate3d(20px, 35px, 0) scale(0.85) rotate(5deg);
  opacity: 0.6;
}

.unlocked-stacked-card.position-4 {
  z-index: 6;
  transform: translate3d(0px, 45px, 0) scale(0.8) rotate(0deg);
  opacity: 0.4;
}

.unlocked-stacked-card.position-5 {
  z-index: 5;
  transform: translate3d(-10px, 50px, 0) scale(0.75) rotate(-3deg);
  opacity: 0.25;
}

.unlocked-stacked-card.position-6 {
  z-index: 4;
  transform: translate3d(15px, 55px, 0) scale(0.7) rotate(4deg);
  opacity: 0.15;
}

.unlocked-stacked-card.position-7 {
  z-index: 3;
  transform: translate3d(0px, 60px, 0) scale(0.65) rotate(0deg);
  opacity: 0.05;
}

/* Blur overlay backdrop */
.showcase-images-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 26, 21, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.nest-showcase-card.step-3-active .showcase-images-container::after {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
}

/* Floating Glass Overlay Card */
.showcase-overlay-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.8rem !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.52) !important;
  backdrop-filter: blur(25px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(130%) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 5;
}

.overlay-dest-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.overlay-status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #10AC84;
  letter-spacing: 0.08em;
}

.overlay-dest-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: #2C251E;
  margin: 0;
  line-height: 1.1;
}

.overlay-dest-desc {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
  max-width: 320px;
}

.overlay-savings-summary {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid rgba(185, 138, 69, 0.12);
  padding-top: 0.8rem;
}

.summary-val {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.summary-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #B98A45;
}

.summary-match {
  font-size: 0.68rem;
  font-weight: 600;
  color: #10AC84;
}

.btn-overlay-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 10px 0;
  border-radius: 12px;
  background: #B98A45;
  color: #FFFFFF;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(185, 138, 69, 0.25);
  transition: all 0.3s ease;
}

.btn-overlay-book:hover {
  background: #A37637;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(185, 138, 69, 0.35);
}

.btn-overlay-book i {
  width: 14px;
  height: 14px;
}

/* Responsiveness media queries */
@media (max-width: 1100px) {
  .nest-panel {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem !important;
  }

  .nest-balance-container {
    padding: 0 2rem !important;
  }
}

@media (max-width: 768px) {
  .section-nest-balance {
    padding: 3rem 0 !important;
  }

  .nest-balance-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .section-nest-balance .gs-section-header {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    width: 100% !important;
  }

  .section-nest-balance .gs-section-title {
    text-align: center !important;
    width: 100% !important;
  }

  .nest-panel {
    padding: 2.2rem 1.25rem !important;
    border-radius: 28px !important;
    gap: 2.5rem !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .nest-left-col,
  .nest-right-col {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .nest-left-col .overtitle-tag {
    justify-content: center !important;
    margin: 0 auto !important;
  }

  .nest-headline {
    text-align: center !important;
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
  }

  .nest-subtext {
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 0.5rem !important;
    font-size: 0.95rem !important;
  }

  .nest-steps-row {
    justify-content: center !important;
    width: 100% !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
  }

  .nest-step-indicator {
    padding: 8px 16px !important;
    justify-content: center !important;
    flex-grow: 1 !important;
    max-width: 140px !important;
  }

  .nest-panels-wrapper {
    width: 100% !important;
  }

  /* Savings calculator and slider tab centering */
  .slider-header {
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin-bottom: 0.75rem !important;
  }

  .slider-wrapper {
    width: 100% !important;
  }

  .slider-ticks {
    justify-content: space-between !important;
    width: 100% !important;
  }

  .premium-savings-visualizer {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .visualizer-metrics {
    justify-content: center !important;
    width: 100% !important;
  }

  .metric {
    align-items: center !important;
    text-align: center !important;
  }

  .panel-hint-text {
    text-align: center !important;
    margin: 0 auto 1.25rem !important;
  }

  .btn-next-step,
  .btn-reset-steps {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }

  /* Duration pills centering */
  .duration-label {
    display: block !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
  }

  .duration-pills {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
    width: 100% !important;
  }

  .dur-pill {
    flex-grow: 1 !important;
    max-width: 110px !important;
    justify-content: center !important;
  }

  /* Projection grid centering */
  .premium-projection-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  .projection-card {
    align-items: center !important;
    text-align: center !important;
  }

  /* Tab 3: Travel centering */
  .travel-summary-card {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .travel-sum-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.25rem !important;
  }

  /* Trust indicator badges centering */
  .nest-trust-row {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
    width: 100% !important;
  }

  .trust-pill {
    justify-content: center !important;
  }

  /* Right column Visual Showcase centering */
  .nest-showcase-card {
    height: 400px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .showcase-overlay-card {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    padding: 1.25rem !important;
    align-items: center !important;
    text-align: center !important;
  }

  .overlay-dest-info {
    align-items: center !important;
    text-align: center !important;
  }

  .overlay-dest-name {
    font-size: 1.4rem !important;
    text-align: center !important;
  }

  .overlay-dest-desc {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .overlay-savings-summary {
    width: 100% !important;
    align-items: center !important;
  }

  .summary-val {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem !important;
    width: 100% !important;
  }

  .summary-amount {
    font-size: 1.2rem !important;
  }

  .summary-match {
    text-align: center !important;
    width: 100% !important;
    margin-top: 0.25rem !important;
  }

  .btn-goto-nest {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }

  /* Scaled Unlocked Destination Card Deck on Mobile to avoid clipping */
  .unlocked-card-deck {
    width: 280px !important;
    height: 375px !important;
    margin-top: -10px !important;
  }

  .unlocked-stacked-card {
    padding: 1rem !important;
    border-radius: 20px !important;
  }

  .card-stack-header {
    margin-bottom: 0.25rem !important;
  }

  .card-category-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .card-travel-btn {
    width: 30px !important;
    height: 30px !important;
  }

  .card-stack-title {
    font-size: 1.1rem !important;
    margin: 0.25rem 0 !important;
  }

  .card-image-wrapper {
    height: 145px !important;
    margin: 0.25rem 0 !important;
    border-radius: 12px !important;
  }

  .card-badge {
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    padding: 3px 8px !important;
    font-size: 0.62rem !important;
  }

  .card-stack-desc {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    margin: 0.25rem 0 0 !important;
  }
}

/* ==========================================================================
   SECTION: TRENDING DESTINATIONS & DISCOVERY CARDS
   ========================================================================== */
.section-trending-destinations {
  background-color: #F8F5F0;
  /* Soft ivory */
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Ambient Gold Glows */
.section-trending-destinations::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(200, 155, 87, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-trending-destinations::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(200, 155, 87, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trending-header-top {
  position: relative;
  z-index: 2;
  width: 90% !important;
  max-width: 90% !important;
  padding: 0 !important;
  margin: 0 auto 2.2rem auto;
}

.trending-header-top .overtitle-tag {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  /* significantly increased text size */
  font-weight: 900;
  /* ultra bold */
  letter-spacing: 0.16em;
  color: #B98A45;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.trending-header-top .overtitle-tag i {
  width: 2.2rem;
  height: 2.2rem;
  color: #B98A45;
  stroke-width: 2.8;
}

.trending-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4.5rem;
  width: 90% !important;
  max-width: 90% !important;
  padding: 0 !important;
}

/* Side Editorial Info (Left side blank space positioning) */
.trending-sidebar-info {
  flex: 0 0 32%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
}

.trending-sidebar-info .overtitle-tag {
  font-family: 'Inter', sans-serif;
}

.trending-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.trending-subtext {
  font-family: 'Inter', sans-serif;

  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.trending-actions-row {
  display: flex;
  align-items: center;
}

.btn-trending-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(200, 155, 87, 0.25);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(30, 26, 21, 0.02);
  transition: all 0.4s var(--ease-spring);
}

.btn-trending-view-all:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: #C89B57;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200, 155, 87, 0.12);
}

.btn-trending-view-all i {
  width: 1.1rem;
  height: 1.1rem;
  color: #C89B57;
  transition: transform 0.3s ease;
}

.btn-trending-view-all:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   REDESIGNED TRENDING DESTINATIONS: PREMIUM EDITORIAL VERTICAL CAROUSEL
   ========================================================================== */
.trending-carousel-viewport {
  position: relative;
  flex: 1;
  /* Dynamically fill remaining space to prevent overflow */
  height: 720px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  /* Move cards to right side corner */
  align-items: flex-start;
  /* Align track at top of viewport for correct offset math */
  z-index: 3;
  perspective: 1500px;
  /* Enable 3D perspective depth for vertical cube roll */
  transform-style: preserve-3d;
  margin-left: -250px;
  /* Expand viewport leftward to prevent long text clipping */
  padding-left: 250px;
}

.trending-carousel-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center cards relative to the track vertical axis to align active/inactive center points */
  gap: 40px;
  will-change: transform;
  transition: none;
  /* JS GSAP will control the transform */
  padding: 0;
  /* Pure math offsets without padding shifts */
  transform-style: preserve-3d;
  /* Pass 3D context to child card wrappers */
}

/* Card Wrapper Container (Allows overflow overlay text to overlap left side) */
.trending-card-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 620px;
  /* Constantly 620px wide on desktop to prevent layout reflow stutter */
  max-width: 100%;
  height: 480px;
  overflow: visible;
  /* crucial: allows country overlay to display outside the card boundaries */
  display: flex;
  justify-content: center;
  /* Center cards horizontally relative to their wrappers */
  align-items: center;
  transform-style: preserve-3d;
  /* Pass 3D space to children cards */
}

/* Country Name Overlay typography */
.trending-card-country-overlay {
  position: absolute;
  right: 88%;
  /* overlapping left border */
  top: 50%;
  transform: translateY(-50%) scale(0.85) translateX(-20px);
  /* Default horizontal offset */
  font-family: 'Montserrat', 'Inter', var(--font-sans);
  font-size: 4.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: var(--country-color, var(--accent-gold));
  opacity: 0.15;
  /* Default state: subtle/faded */
  z-index: 10;
  /* display on top of card background */
  pointer-events: none;
  /* pass-through click to card */
  white-space: nowrap;
  transition: opacity 0.8s var(--ease-spring),
    transform 0.8s var(--ease-spring);
  will-change: transform, opacity;
}

/* Slightly move the first three cards' country overlays to the right for deeper overlap */
.trending-card-wrapper[data-index="0"] .trending-card-country-overlay,
.trending-card-wrapper[data-index="1"] .trending-card-country-overlay,
.trending-card-wrapper[data-index="2"] .trending-card-country-overlay {
  right: 76%;
}

/* Adjust overlap positions for the last cards (Italy and Switzerland) to be further right */
.trending-card-wrapper[data-index="5"] .trending-card-country-overlay {
  right: 82%;
}

.trending-card-wrapper[data-index="6"] .trending-card-country-overlay {
  right: 56%;
}

/* Active overlay state */
.trending-card-wrapper.active .trending-card-country-overlay {
  opacity: 0.95;
  transform: translateY(-50%) scale(1.05) translateX(0);
  /* Slide in forward */
}

/* Peeking overlay states */
.trending-card-wrapper.peeking-above .trending-card-country-overlay,
.trending-card-wrapper.peeking-below .trending-card-country-overlay {
  opacity: 0.45;
  transform: translateY(-50%) scale(0.95) translateX(-10px);
  /* Partial slide offset */
}

.trending-card-wrapper:not(.active):hover .trending-card-country-overlay {
  opacity: 0.55;
}

/* Individual Destination Card */
.trending-card {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: opacity, transform;
  /* Visual states default: far card style */
  opacity: 0.15;
  transform: scaleX(0.8387) rotateX(0deg) translateZ(-140px);
  /* 520px width default */
  transition: opacity 0.8s var(--ease-spring),
    transform 0.8s var(--ease-spring),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* 3D Vertical Cube Roll Transition States (No Blur, Smooth tilting & z-depth) */
.trending-card-wrapper.active .trending-card {
  opacity: 1 !important;
  transform: rotateX(0deg) translateZ(0) scaleX(1) !important;
  /* Full 620px width */
  border-color: rgba(229, 192, 96, 0.85) !important;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(229, 192, 96, 0.35) !important;
}

.trending-card-wrapper.peeking-above .trending-card {
  opacity: 0.65;
  transform: rotateX(-18deg) translateZ(-60px) translateY(12px) scaleX(0.8387);
  /* 520px width, tilted down & back */
}

.trending-card-wrapper.peeking-below .trending-card {
  opacity: 0.65;
  transform: rotateX(18deg) translateZ(-60px) translateY(-12px) scaleX(0.8387);
  /* 520px width, tilted up & back */
}

.trending-card-wrapper.far-above .trending-card {
  opacity: 0.15;
  transform: rotateX(-35deg) translateZ(-140px) translateY(24px) scaleX(0.8387);
}

.trending-card-wrapper.far-below .trending-card {
  opacity: 0.15;
  transform: rotateX(35deg) translateZ(-140px) translateY(-24px) scaleX(0.8387);
}

.trending-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.6s ease;
}

.trending-card:hover .trending-card-img {
  transform: scale(1.04);
}

.trending-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 26, 21, 0) 0%, rgba(30, 26, 21, 0.3) 40%, rgba(30, 26, 21, 0.9) 100%);
  z-index: 2;
}

/* Large Translucent Serif Number behind text content */
.trending-card-bg-num {
  position: absolute;
  left: 20px;
  bottom: 80px;
  font-family: var(--font-serif);
  font-size: 13rem;
  font-weight: 300;
  color: rgba(229, 192, 96, 0.15);
  /* Translucent gold */
  line-height: 1;
  pointer-events: none;
  z-index: 3;
}

/* Card Content container on bottom half of the card */
.trending-card-content {
  position: absolute;
  inset: 0;
  padding: 2.2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFF;
}

.trending-card-header {
  position: absolute;
  top: 1.5rem;
  left: 2.2rem;
  right: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.trending-card-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Wishlist heart button styling inside card header */
.trending-card-header .wishlist-heart-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trending-card-header .wishlist-heart-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #E65C39;
  transform: scale(1.1);
}

.trending-card-header .wishlist-heart-btn.active {
  background: #FFF;
  color: #E65C39;
}

.trending-card-header .wishlist-heart-btn.active i {
  fill: #E65C39;
  stroke: #E65C39;
}

/* Title, Tagline and Metadata */
.trending-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 0.2rem 0;
  line-height: 1.15;
  color: #FFF;
}

.trending-card-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.6rem 0;
  /* increased space since metadata row is removed */
}

.trending-card-meta {
  display: none !important;
  /* Removed location, country, and travelers info inside the card */
}

.trending-card-location,
.trending-card-count {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trending-card-location svg,
.trending-card-count svg {
  color: #E5C060;
  flex-shrink: 0;
}

/* Explore Button CTA */
.trending-card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 10px 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trending-card-btn:hover {
  background: #FFF;
  color: var(--text-dark);
  border-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.trending-card-btn:active {
  transform: translateY(0);
}

/* Inactive peeking card states hover helper on wrapper context */
.trending-card-wrapper:not(.active):hover .trending-card {
  opacity: 0.75;
}

/* ==============================================
   SECTION DIVIDER STYLE
   ============================================== */
.trending-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
  margin-bottom: 4.5rem;
  padding: 0 1rem;
  width: 100%;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 87, 0.3) 50%, transparent);
}

.divider-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.divider-sparkle {
  width: 1.1rem;
  height: 1.1rem;
  color: #C89B57;
}

.divider-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.0rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  text-align: center;
}

/* ==============================================
   PART 2 — DISCOVERY CARDS
   ============================================== */
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
  width: 100%;
  position: relative;
  z-index: 3;
}

.discovery-card {
  position: relative;
  min-height: 250px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(30, 26, 21, 0.02);
  transition: all 0.4s var(--ease-spring);
}

.discovery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 26, 21, 0.05);
  border-color: rgba(200, 155, 87, 0.3);
}

/* Pastel Gradients */
.nest-gradient {
  background: linear-gradient(135deg, #FFFDF9 0%, #F5ECE0 100%);
}

.mood-gradient {
  background: linear-gradient(135deg, #F6F4FB 0%, #EEE7F6 100%);
}

.map-gradient {
  background: linear-gradient(135deg, #F3F6F8 0%, #DCEAF5 100%);
}

.stories-gradient {
  background: linear-gradient(135deg, #F0F6F5 0%, #DCECEB 100%);
}

.club-gradient {
  background: linear-gradient(135deg, #FFF5F2 0%, #FBE5DE 100%);
}

.discovery-icon-wrapper {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(200, 155, 87, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C89B57;
  margin-bottom: 0.8rem;
}

.discovery-icon-wrapper i {
  width: 1.0rem;
  height: 1.0rem;
}

.discovery-text-group {
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}

.discovery-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.discovery-desc {
  font-size: 0.74rem;
  color: #6B6B6B;
  margin-top: 0.3rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Action Button */
.btn-discovery-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(200, 155, 87, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.3s ease;
  z-index: 4;
}

.btn-discovery-action:hover {
  background: #FFF;
  border-color: #C89B57;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(200, 155, 87, 0.1);
}

.btn-discovery-action i {
  width: 0.85rem;
  height: 0.85rem;
  color: #C89B57;
  transition: transform 0.2s ease;
}

.btn-discovery-action:hover i {
  transform: translateX(2px);
}

.pulse-ring {
  transform-origin: center;
  animation: pinPulse 2.5s infinite ease-out;
}

@keyframes pinPulse {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Stories Visual (Polaroid Stack) */
.polaroid-stack {
  position: relative;
  width: 90px;
  height: 90px;
}

.polaroid-item {
  position: absolute;
  width: 68px;
  height: 68px;
  background: #FFF;
  padding: 2px 2px 10px 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.polaroid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1px;
}

.item-back {
  transform: rotate(-12deg) translate(-12px, -6px);
  z-index: 1;
}

.item-front {
  transform: rotate(8deg) translate(8px, 2px);
  z-index: 2;
}

.polaroid-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}

.polaroid-play-overlay i {
  width: 1.1rem;
  height: 1.1rem;
  fill: #FFF;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Club Visual (Member Card) */
.luxury-member-card {
  position: relative;
  width: 116px;
  height: 72px;
  background: linear-gradient(135deg, #1C1917 0%, #0C0A09 100%);
  border-radius: 8px;
  border: 1px solid rgba(200, 155, 87, 0.4);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transform: rotate(-5deg) translateY(5px);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  overflow: hidden;
}

.discovery-card:hover .luxury-member-card {
  transform: rotate(-2deg) translateY(2px) scale(1.05);
  box-shadow: 0 15px 30px rgba(200, 155, 87, 0.15);
}

.luxury-member-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 155, 87, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.card-chip {
  width: 12px;
  height: 9px;
  background: #C89B57;
  border-radius: 1.5px;
  opacity: 0.8;
}

.card-logo {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 16px;
  height: 16px;
  color: #C89B57;
}

.card-logo svg {
  width: 100%;
  height: 100%;
}

.card-brand {
  font-size: 0.42rem;
  letter-spacing: 0.08em;
  color: #C89B57;
  font-weight: 700;
  font-family: sans-serif;
}

.card-tier {
  font-size: 0.36rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-family: sans-serif;
}

/* RESPONSIVE MEDIA QUERIES FOR TRENDING & DISCOVERY */
@media (max-width: 1200px) {
  .trending-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .discovery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-trending-destinations {
    background-color: #F8F5EF;
    padding: 6rem 0 3rem 0;
  }

  .trending-header-top {
    margin-bottom: 1.5rem;
    padding: 0 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .trending-header-top .overtitle-tag {
    font-size: 1.35rem;
  }

  .trending-header-top .overtitle-tag i {
    width: 1.6rem;
    height: 1.6rem;
  }

  .trending-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .trending-sidebar-info {
    width: 100%;
    max-width: none;
    flex: 0 0 100%;
    text-align: center;
    align-items: center;
  }

  .trending-subtext {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .trending-carousel-viewport {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    height: 650px !important;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 130px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    overflow: visible !important;
    perspective: 1000px;
    transform-style: preserve-3d;
  }

  .trending-carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
    display: block;
    transform-style: preserve-3d;
    margin: 0 auto;
  }

  .trending-card-wrapper {
    position: absolute;
    top: 0;
    left: 6% !important;
    width: 86% !important;
    height: 500px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform-origin: bottom center;
    will-change: transform, opacity, filter;
    pointer-events: none;
    transform-style: preserve-3d;
    transition: none;
  }

  .trending-card-wrapper.active {
    pointer-events: auto;
  }

  .trending-card {
    width: 100% !important;
    height: 100% !important;
    border-radius: 34px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 30px 60px rgba(30, 26, 21, 0.25) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
    opacity: 1 !important;
    transform: none !important;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
  }

  .trending-card-wrapper.active .trending-card {
    border-color: rgba(169, 124, 55, 0.8) !important;
    box-shadow: 0 40px 80px rgba(30, 26, 21, 0.35) !important;
  }

  .trending-card-country-overlay {
    display: block !important;
    position: absolute !important;
    right: 78% !important;
    /* Peeks out from behind the left of the card */
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 58px !important;
    font-weight: 900 !important;
    color: var(--country-color, var(--accent-gold)) !important;
    opacity: 0 !important;
    /* JS will animate active one to 1 */
    white-space: nowrap !important;
    z-index: -1 !important;
    /* Render behind card */
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    pointer-events: none !important;
    transition: none !important;
  }

  .trending-card-fade {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, transparent 40%, rgba(0, 0, 0, 0.58) 100%) !important;
  }

  .trending-card-content {
    position: absolute !important;
    inset: 0 !important;
    padding: 28px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    text-align: left !important;
    pointer-events: none !important;
    z-index: 5 !important;
    height: 100%;
  }

  .trending-card-content * {
    pointer-events: auto;
  }

  .trending-card-meta {
    display: block !important;
    position: absolute !important;
    left: 28px !important;
    bottom: 148px !important;
    /* Adjusted slightly to sit just above the 28px title */
    margin: 0 !important;
    z-index: 5 !important;
  }

  .trending-card-location {
    display: inline-flex !important;
    align-items: center !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 20px !important;
    /* Increased country text size to 20px */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: var(--country-color, var(--accent-gold)) !important;
    /* Specific country accent color */
  }

  .trending-card-location svg {
    display: none !important;
    /* Hide location icon on mobile cards */
  }

  .trending-card-count {
    display: none !important;
    /* Hide travelers count on mobile cards */
  }

  .trending-card-title {
    position: absolute !important;
    left: 28px !important;
    bottom: 112px !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 28px !important;
    /* Reduced city text size to 28px */
    font-weight: 500 !important;
    color: #FFFFFF !important;
    letter-spacing: -0.4px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .trending-card-tagline {
    position: absolute !important;
    left: 28px !important;
    bottom: 82px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .trending-card-btn {
    position: absolute !important;
    bottom: 28px !important;
    left: 28px !important;
    width: 185px !important;
    /* Reduced width */
    height: 48px !important;
    /* Reduced height */
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #1E1A15 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    /* Reduced font size */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    /* Reduced gap */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    text-align: left !important;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.2s ease !important;
    cursor: pointer !important;
    z-index: 6 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .trending-card-btn:active {
    transform: scale(0.97) !important;
    background: #ffffff !important;
  }

  .trending-card-badge {
    position: absolute !important;
    top: 24px !important;
    left: 24px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 !important;
    z-index: 6 !important;
  }

  .trending-card-header .wishlist-heart-btn {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
    z-index: 6 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
  }

  .trending-card-header .wishlist-heart-btn svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #FFFFFF !important;
    fill: none !important;
  }

  .trending-card-header .wishlist-heart-btn.active svg {
    fill: #E65C39 !important;
    stroke: #E65C39 !important;
  }

  .trending-card-bg-num {
    display: none !important;
  }

  .discovery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .trending-divider-row {
    margin-top: 4rem;
    margin-bottom: 3rem;
  }

  .mobile-scroll-indicator {
    position: absolute;
    right: 5px !important; /* Pushed even closer to screen edge */
    top: 52%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 30;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #A97C37;
  }

  .mobile-indicator-track {
    width: 2px;
    height: 70px;
    background: rgba(169, 124, 55, 0.2);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
  }

  .mobile-indicator-bar {
    width: 100%;
    background: #A97C37;
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

@media (max-width: 480px) {
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ==========================================================================
   SECTION 01.2 — CINEMATIC DESTINATION GALLERY (2nd Hero Section Redesign)
   ========================================================================== */
/* ==========================================================================
   SECTION 01.2 — CINEMATIC DESTINATION GALLERY (2nd Hero Section Redesign)
   ========================================================================== */
.journey-world {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #050B14;
  /* Dark cinematic obsidian base */
  z-index: 5;
  box-sizing: border-box;
}

#three-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.content-layer {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: white;
  width: 45%;
  max-width: 600px;
  pointer-events: none;
  /* Let clicks pass through to Three.js canvas */
}

.content-layer .eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.content-layer h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(72px, 8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.content-layer h1 span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: #D4A44F;
  /* Accent Gold */
}

.content-layer p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.75;
  max-width: 460px;
  line-height: 1.6;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cards-projection-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  /* Let events fall through to Three.js, cards override this */
  overflow: hidden;
}

.destination-card {
  position: absolute;
  width: 320px;
  height: 480px;
  backdrop-filter: blur(30px) saturate(120%);
  -webkit-backdrop-filter: blur(30px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  padding: 2.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  /* Active pointer clicks */
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.destination-card:hover {
  border-color: rgba(212, 164, 79, 0.45);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(212, 164, 79, 0.08), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.destination-card .card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A44F;
  transform: translate3d(0, 0, 20px);
}

.destination-card .card-title {
  font-family: 'Neue Montreal', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transform: translate3d(0, 0, 30px);
}

.destination-card .card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1.5;
  margin-top: 1rem;
  transform: translate3d(0, 0, 15px);
}

.destination-card .card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translate3d(0, 0, 25px);
}

.destination-card .card-stats {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.destination-card .card-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.4;
}

.destination-card .card-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.destination-card .card-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.destination-card:hover .card-btn {
  background: #fff;
  color: #050B14;
  border-color: #fff;
  transform: scale(1.05);
}

.destination-card .card-btn i,
.destination-card .card-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.5;
}

/* Depth preserve style class */
.depth-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Story Detail Overlay inside 3D environment */
.journey-story-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: rgba(5, 11, 20, 0.65);
  backdrop-filter: blur(25px) saturate(120%);
  -webkit-backdrop-filter: blur(25px) saturate(120%);
  align-items: center;
  justify-content: center;
  padding: 4rem 6.5rem;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.journey-story-overlay.active {
  display: flex;
  opacity: 1;
}

.btn-story-close-journey {
  position: absolute;
  top: 3.5rem;
  left: 6.5rem;
  z-index: 210;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-story-close-journey:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #D4A44F;
  color: #D4A44F;
  transform: translateY(-2px);
}

.btn-story-close-journey i,
.btn-story-close-journey svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.5;
}

.journey-story-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: center;
  z-index: 5;
  color: white;
}

.journey-story-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.journey-story-left .story-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4A44F;
}

.journey-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0 1.5rem 0;
  letter-spacing: -0.015em;
  color: white;
}

.journey-story-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3.5rem;
  max-width: 540px;
}

/* Stats grid */
.journey-story-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  width: 100%;
}

.journey-story-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.journey-story-stat-card .stat-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(212, 164, 79, 0.1);
  border: 1px solid rgba(212, 164, 79, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A44F;
  flex-shrink: 0;
}

.journey-story-stat-card .stat-icon-wrapper i,
.journey-story-stat-card .stat-icon-wrapper svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.journey-story-stat-card .stat-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.journey-story-stat-card .stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}

.journey-story-stat-card .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Story Right column (Next destination queue) */
.journey-story-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.journey-vertical-story-queue {
  width: 320px;
  position: relative;
}

.queue-card {
  width: 100%;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 11, 20, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.5s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  box-sizing: border-box;
  position: relative;
}

.queue-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 164, 79, 0.4);
  box-shadow: 0 25px 50px rgba(212, 164, 79, 0.15);
}

.queue-card .preview-img-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.queue-card .preview-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.queue-card:hover .preview-img {
  transform: scale(1.05);
}

.queue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 11, 20, 0.1) 0%, rgba(5, 11, 20, 0.85) 100%);
  z-index: 1;
}

.queue-card .preview-details {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.queue-card .preview-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.queue-card .preview-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #D4A44F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.queue-card .preview-title {
  font-family: 'Neue Montreal', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.queue-card .preview-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.queue-card .preview-next-arrow-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #D4A44F;
  color: #050B14;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.queue-card:hover .preview-next-arrow-btn {
  background: white;
  transform: scale(1.1);
}

.queue-card .preview-next-arrow-btn i,
.queue-card .preview-next-arrow-btn svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.5;
}

/* Dot pagination for 3D Carousel */
.world-carousel-dots {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  gap: 0.8rem;
  pointer-events: auto;
}

.world-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.world-carousel-dots .dot.active {
  width: 28px;
  border-radius: 4px;
  background: #D4A44F;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .journey-story-overlay {
    padding: 4rem 3rem;
  }

  .journey-story-content {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .journey-world {
    height: auto;
    min-height: 100vh;
    padding: 5rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .content-layer {
    position: relative;
    left: 5%;
    top: 0;
    transform: none;
    width: 90%;
    margin-bottom: 2.5rem;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .content-layer h1 {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 1rem;
  }

  .content-layer p {
    font-size: 15px;
    line-height: 1.5;
  }

  .cards-projection-layer {
    position: relative;
    width: 100vw;
    height: 480px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    display: flex;
    align-items: center;
    padding: 0 15vw;
    box-sizing: border-box;
    pointer-events: auto;
  }

  .destination-card {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    opacity: 0.8 !important;
    filter: none !important;
    flex: 0 0 70vw;
    scroll-snap-align: center;
    height: 400px;
    padding: 1.5rem;
  }

  .destination-card.active {
    opacity: 1 !important;
    border-color: rgba(212, 164, 79, 0.75) !important;
  }

  .destination-card .card-title {
    font-size: 24px;
  }

  .world-carousel-dots {
    bottom: 2rem;
  }

  .journey-story-overlay {
    padding: 3rem 1.5rem;
    overflow-y: auto;
    align-items: flex-start;
  }

  .btn-story-close-journey {
    top: 2rem;
    left: 1.5rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }

  .journey-story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }

  .journey-story-title {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }

  .journey-story-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .journey-story-stats-grid {
    gap: 1.5rem;
  }

  .journey-story-stat-card .stat-value {
    font-size: 1.15rem;
  }

  .journey-story-stat-card .stat-label {
    font-size: 0.65rem;
  }

  .journey-vertical-story-queue {
    width: 100%;
  }

  .queue-card {
    height: 220px;
  }
}

/* ==========================================================================
   SECTION 03 — EXPERIENCE TIMELINE & CURATED EXPERIENCES (Luxury Ivory Theme)
   ========================================================================== */
.section-timeline-experiences {
  background-color: #FEF5EF;
  /* Warm ivory background */
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  color: #182E53;
  /* Deep luxury navy blue */
}

/* Clouds background storytelling */
.timeline-cloud-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(254, 245, 239, 0));
  pointer-events: none;
  z-index: 1;
}

.timeline-cloud-mist {
  position: absolute;
  top: 25%;
  left: -10%;
  width: 120%;
  height: 60%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.45) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.timeline-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6.5rem;
  position: relative;
  z-index: 2;
}

.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
}

.timeline-tag {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #E3AC2B;
  /* Gold Accent */
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.timeline-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.0rem);
  font-weight: 300;
  color: #182E53;
  margin-top: 1rem;
  line-height: 1.15;
}

.timeline-headline .serif-italic {
  font-style: italic;
  color: #E3AC2B;
}

/* Timeline Wrapper */
.journey-timeline-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 8rem;
  padding: 2rem 0;
}

/* Flight Path SVG */
.flight-path-svg {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

#solid-flight-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.1s linear;
  /* Synced with scroll trigger */
}

/* Timeline Stages */
.timeline-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 2;
  gap: 2rem;
}

.timeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Stage Icon Box (2.5D look) */
.stage-icon-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(227, 172, 43, 0.22);
  box-shadow: 0 12px 28px rgba(24, 46, 83, 0.06), inset 0 2px 4px rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1.8rem;
  z-index: 3;
}

/* Float Animation */
@keyframes stageFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.floating-element {
  animation: stageFloat 5s ease-in-out infinite;
}

/* Specific 2.5D Custom Styles */
.icon-inner {
  width: 60px;
  height: 60px;
  position: relative;
}

/* Dream Compass */
.compass-icon::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2.5px solid #182E53;
  background: linear-gradient(135deg, rgba(227, 172, 43, 0.05) 0%, rgba(227, 172, 43, 0.18) 100%);
}

.compass-icon::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 24px solid #E3AC2B;
  top: 10px;
  left: calc(50% - 6px);
  transform: rotate(45deg);
  transform-origin: 50% 100%;
  filter: drop-shadow(0 2px 4px rgba(24, 46, 83, 0.2));
}

/* Plan Itinerary */
.itinerary-icon::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 42px;
  background: white;
  border: 2px solid #182E53;
  border-radius: 4px;
  top: 9px;
  left: calc(50% - 16px);
  box-shadow: 2px 2px 0px #E3AC2B;
}

.itinerary-icon::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: rgba(24, 46, 83, 0.35);
  top: 20px;
  left: calc(50% - 9px);
  box-shadow: 0 5px 0 rgba(24, 46, 83, 0.35), 0 10px 0 rgba(24, 46, 83, 0.35);
}

/* Fly Window */
.window-icon::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 44px;
  border-radius: 15px 15px 6px 6px;
  border: 2px solid #182E53;
  background: linear-gradient(to bottom, #6DA6E4 0%, #D2DBE6 100%);
  top: 8px;
  left: calc(50% - 15px);
  overflow: hidden;
}

.window-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  bottom: 12px;
  left: 16px;
  filter: blur(2px);
}

/* Explore Camera */
.camera-icon::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 28px;
  border-radius: 5px;
  border: 2px solid #182E53;
  background: white;
  top: 18px;
  left: calc(50% - 20px);
  box-shadow: inset 0 -3px 0 #E3AC2B;
}

.camera-icon::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #182E53;
  background: #D2DBE6;
  top: 21px;
  left: calc(50% - 9px);
}

/* Remember Heart */
.heart-icon::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #E3AC2B;
  transform: rotate(-45deg);
  top: 18px;
  left: 14px;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 4px 10px rgba(227, 172, 43, 0.3);
}

.heart-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #E3AC2B;
  transform: rotate(-45deg);
  top: 18px;
  left: 22px;
  border-radius: 50%;
}

/* Stage Info Details */
.stage-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #E3AC2B;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.stage-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #182E53;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.stage-desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(24, 46, 83, 0.65);
  max-width: 180px;
}

/* ==============================
   CURATED EXPERIENCES SUBSECTION
   ============================== */
.curated-experiences-section {
  margin-top: 8rem;
  position: relative;
  z-index: 2;
}

.curated-header {
  text-align: center;
  margin-bottom: 5rem;
}

.curated-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #182E53;
}

.curated-subtitle {
  font-size: 1.05rem;
  color: rgba(24, 46, 83, 0.55);
  margin-top: 0.5rem;
}

/* Floating Postcards Layout (Organic offsets) */
.curated-cards-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  padding: 2rem 0;
}

.curated-card {
  position: relative;
  width: 270px;
  height: 380px;
  cursor: pointer;
  perspective: 1000px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Organic Height/Translate Offset for Apple style floating presentation */
.card-santorini {
  transform: translateY(-15px);
}

.card-swiss {
  transform: translateY(20px);
}

.card-bali {
  transform: translateY(-30px);
}

.card-dubai {
  transform: translateY(10px);
}

.curated-card-inner {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(24, 46, 83, 0.08);
  box-shadow: 0 12px 35px rgba(24, 46, 83, 0.06);
  transition: box-shadow 0.5s, border-color 0.5s;
}

.curated-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.curated-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24, 46, 83, 0) 40%, rgba(24, 46, 83, 0.88) 100%);
  transition: opacity 0.5s;
}

.curated-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  color: white;
  z-index: 3;
}

.curated-dest {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.curated-country {
  font-size: 0.75rem;
  font-weight: 700;
  color: #E3AC2B;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.curated-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.curated-price {
  font-weight: 600;
  color: white;
}

.curated-duration {
  color: rgba(255, 255, 255, 0.7);
}

/* Hover Actions */
.curated-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.curated-card:hover .curated-card-inner {
  border-color: rgba(227, 172, 43, 0.45);
  box-shadow: 0 20px 45px rgba(227, 172, 43, 0.12), 0 8px 18px rgba(24, 46, 83, 0.05);
}

.curated-card:hover .curated-card-photo {
  transform: scale(1.08);
}

/* ==========================================================================
   SECTION 01.2 — CINEMATIC 3D JOURNEY WORLD (Three.js Hero)
   Typography: Cormorant Garamond + Inter. Cards in 3D depth perspective.
   ========================================================================== */

/* ── Section Container ─────────────────────────────────────────── */
.journey-world {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #080612;
  isolation: isolate;
}

/* ── WebGL Canvas ──────────────────────────────────────────────── */
#journey-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 1;
}

/* ── Cinematic Vignette ────────────────────────────────────────── */
.journey-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% 50%, transparent 30%, rgba(4, 2, 12, 0.65) 100%),
    linear-gradient(to bottom, rgba(4, 2, 12, 0.45) 0%, transparent 25%, transparent 70%, rgba(4, 2, 12, 0.8) 100%),
    linear-gradient(to right, rgba(4, 2, 12, 0.55) 0%, transparent 40%, transparent 60%, rgba(4, 2, 12, 0.35) 100%);
}

/* ── Atmospheric Fog ───────────────────────────────────────────── */
.journey-fog-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 200% 40% at 50% 85%, rgba(255, 180, 80, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 150% 30% at 30% 100%, rgba(255, 140, 60, 0.06) 0%, transparent 60%);
  animation: fogDrift 12s ease-in-out infinite alternate;
}

@keyframes fogDrift {
  0% {
    transform: translateX(-1%) scaleX(1);
    opacity: 0.8;
  }

  50% {
    transform: translateX(1%) scaleX(1.02);
    opacity: 1;
  }

  100% {
    transform: translateX(-0.5%) scaleX(0.99);
    opacity: 0.85;
  }
}

/* ── Volumetric Light Rays ─────────────────────────────────────── */
.journey-light-rays {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.light-ray {
  position: absolute;
  top: -10%;
  width: 3px;
  height: 120%;
  border-radius: 999px;
  opacity: 0;
  animation: rayPulse 8s ease-in-out infinite;
}

.ray-1 {
  left: 32%;
  background: linear-gradient(to bottom, rgba(255, 200, 100, 0.18), transparent);
  transform: rotate(-8deg);
  animation-delay: 0s;
  width: 80px;
}

.ray-2 {
  left: 55%;
  background: linear-gradient(to bottom, rgba(255, 180, 80, 0.12), transparent);
  transform: rotate(5deg);
  animation-delay: 2.5s;
  width: 50px;
}

.ray-3 {
  left: 70%;
  background: linear-gradient(to bottom, rgba(255, 210, 120, 0.09), transparent);
  transform: rotate(15deg);
  animation-delay: 5s;
  width: 35px;
}

@keyframes rayPulse {
  0% {
    opacity: 0;
    transform: rotate(var(--r, -8deg)) scaleY(0.95);
  }

  30% {
    opacity: 1;
    transform: rotate(var(--r, -8deg)) scaleY(1);
  }

  70% {
    opacity: 0.6;
    transform: rotate(var(--r, -8deg)) scaleY(1.02);
  }

  100% {
    opacity: 0;
    transform: rotate(var(--r, -8deg)) scaleY(0.98);
  }
}

/* ── Left Editorial Content Layer ──────────────────────────────── */
.journey-content-layer {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 520px;
  pointer-events: none;
}

.journey-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #D4A44F;
  margin-bottom: 1.4rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.journey-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #D4A44F;
  opacity: 0.7;
}

.journey-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(52px, 6vw, 110px);
  line-height: 0.93;
  color: #FEFCF8;
  margin: 0 0 1.6rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.journey-headline em {
  font-style: italic;
  color: #D4A44F;
  font-weight: 300;
}

.journey-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(254, 252, 248, 0.7);
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

/* ── Progress Indicator ─────────────────────────────────────────── */
.journey-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.journey-prog-curr,
.journey-prog-total {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(254, 252, 248, 0.5);
}

.journey-prog-curr {
  color: #D4A44F;
}

.journey-prog-track {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.journey-prog-fill {
  height: 100%;
  width: 20%;
  /* 1/5 = 20% */
  background: linear-gradient(90deg, #D4A44F, #F0C878);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── 3D Card World ──────────────────────────────────────────────── */
.journey-cards-world {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  perspective: 1200px;
  perspective-origin: 50% 52%;
}

/* ── Individual Card ────────────────────────────────────────────── */
.jw-card {
  position: absolute;
  width: clamp(220px, 22vw, 320px);
  height: clamp(300px, 38vh, 480px);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
  transform-style: preserve-3d;
  transition: none;
  /* GSAP handles all transforms */
  will-change: transform, opacity, filter;
}

/* Card Background Image */
.jw-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.jw-card:hover .jw-card-bg {
  transform: scale(1.12);
}

/* Frosted Glass Top Layer */
.jw-card-frosted {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.72) 100%);
  backdrop-filter: blur(0px);
  /* active card gets blur on siblings */
}

/* Gold Glow Border */
.jw-card-glow-border {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(212, 164, 79, 0.25);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 0 0 0px rgba(212, 164, 79, 0),
    0 20px 60px rgba(0, 0, 0, 0.6);
  transition: border-color 0.5s, box-shadow 0.5s;
}

.jw-card.active .jw-card-glow-border {
  border-color: rgba(212, 164, 79, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(212, 164, 79, 0.2),
    0 0 40px rgba(212, 164, 79, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.7);
}

/* Depth-of-field blur overlay for inactive cards */
.jw-card-dof-blur {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition: backdrop-filter 0.6s;
}

/* Card Content */
.jw-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  z-index: 2;
}

.jw-card-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 164, 79, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 164, 79, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #D4A44F;
  width: fit-content;
}

.jw-card-meta-top {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 0.3rem;
}

.jw-card-country {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.jw-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jw-card-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.jw-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jw-card.active .jw-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

.jw-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.jw-card-duration {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
}

.jw-card-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #D4A44F;
  background: rgba(212, 164, 79, 0.12);
  border: 1px solid rgba(212, 164, 79, 0.3);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.jw-card-cta:hover {
  background: rgba(212, 164, 79, 0.25);
  border-color: rgba(212, 164, 79, 0.6);
  transform: scale(1.04);
}

/* ── Navigation Arrows ──────────────────────────────────────────── */
.journey-nav {
  position: absolute;
  bottom: 12%;
  right: 5%;
  z-index: 12;
  display: flex;
  gap: 0.75rem;
}

.jw-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(212, 164, 79, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s, color 0.3s;
}

.jw-nav-btn:hover {
  background: rgba(212, 164, 79, 0.18);
  border-color: rgba(212, 164, 79, 0.6);
  color: #D4A44F;
  transform: scale(1.08);
}

.jw-nav-btn:active {
  transform: scale(0.96);
}

/* ── Bottom Destination Banner ──────────────────────────────────── */
.journey-dest-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 2rem 5%;
  background: linear-gradient(to top, rgba(4, 2, 12, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

.jw-dest-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 80px);
  color: rgba(254, 252, 248, 0.06);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  text-shadow: none;
}

.jw-dest-country {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 164, 79, 0.5);
  padding-bottom: 0.6rem;
  transition: color 0.6s;
}

/* ── Active Card State: GSAP handles transforms,
      CSS handles decoration changes ─────────────────────────────── */
.jw-card.active .jw-card-dof-blur {
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

/* Touch swipe hint (mobile) */
@media (pointer: coarse) {
  .journey-nav {
    bottom: 10%;
  }

  .jw-nav-btn {
    width: 46px;
    height: 46px;
  }
}

/* ── Mobile Layout ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .journey-content-layer {
    left: 5%;
    top: auto;
    bottom: auto;
    transform: none;
    top: 18%;
    max-width: 90%;
  }

  .journey-headline {
    font-size: clamp(40px, 10vw, 68px);
  }

  .journey-subheading {
    font-size: 14px;
  }

  .journey-cards-world {
    perspective: 900px;
  }

  .jw-card {
    width: clamp(200px, 60vw, 280px);
    height: clamp(260px, 50vh, 380px);
  }

  .journey-nav {
    bottom: 6%;
    right: 50%;
    transform: translateX(50%);
  }

  .jw-dest-name {
    font-size: clamp(28px, 8vw, 60px);
  }
}

/* ── Reduced Motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  .journey-fog-overlay,
  .light-ray {
    animation: none !important;
  }
}


/* ==========================================================================
   GS-HERO v3 — Patagonia Express Style
   Single static BG · Square horizontal cards · Slide motion
   ========================================================================== */

/* ── SECTION ─────────────────────────────────────────────────────────────── */
.gs-hero {
  position: relative;
  width: 100%;
  height: 120vh;
  min-height: 640px;
  overflow: hidden;
  background: #060810;
  display: block;
  font-family: 'Inter', sans-serif;
}

/* ── STATIC BACKGROUND ───────────────────────────────────────────────────── */
.gs-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gs-bg-mountain {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 35%;
  z-index: 1;
}

.gs-bg-surface {
  display: none;
}

.gs-bg-mountain-dest {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 1.2;
  opacity: 0;
}

.gs-bg-clouds {
  position: absolute;
  inset: 0;
  z-index: 1.4;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  will-change: opacity, transform, filter;
}

.gs-bg-light {
  position: absolute;
  width: 120vmax;
  height: 120vmax;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 1.6;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: opacity, transform;
}

.gs-bg-atmos-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 1.8;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.gs-bg-atmos-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  z-index: 1.8;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.gs-bg-atmos-vignette {
  position: absolute;
  inset: 0;
  z-index: 1.8;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* Foreground traveler cutout staying in front of cards and transition images */
.gs-traveler {
  display: none;
}

/* Left darkness — helps editorial text read */
.gs-bg-grade-l {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(4, 5, 10, 0.75) 0%,
      rgba(5, 7, 14, 0.45) 35%,
      rgba(4, 6, 12, 0.15) 62%,
      transparent 80%);
}

/* Bottom darkness — grounds the scene, hides road bottom edge */
.gs-bg-grade-b {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(to top,
      rgba(4, 5, 10, 0.92) 0%,
      rgba(5, 6, 12, 0.60) 28%,
      rgba(5, 7, 12, 0.18) 58%,
      transparent 100%);
}

/* Subtle top darkening for navbar contrast */
.gs-bg-grade-t {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(to bottom, rgba(4, 5, 10, 0.60) 0%, transparent 100%);
}

/* Radial edge vignette */
.gs-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 130% 100% at 50% 50%, transparent 38%, rgba(3, 4, 10, 0.60) 100%);
}

/* ── BRAND TOP-LEFT (Patagonia Express style) ────────────────────────────── */
.gs-brand {
  position: absolute;
  z-index: 30;
  top: clamp(80px, 10vh, 110px);
  left: clamp(28px, 3.5vw, 60px);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gs-brand-rule {
  display: inline-block;
  width: 4px;
  height: 44px;
  background: #D4AF37;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gs-brand-text {
  line-height: 1.15;
}

.gs-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 3px;
}

.gs-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1;
}

.gs-brand-name em {
  color: #D4AF37;
  font-style: italic;
}

/* ── CARD STAGE — overflow:hidden window for the carousel ───────────────── */
.gs-card-stage {
  position: absolute;
  z-index: 15;
  /* Cards occupy the upper-center of the screen, above the traveler/road */
  top: 10%;
  left: 0;
  right: 0;
  height: 46%;
  overflow: hidden;
}

.gs-card-track {
  /* Horizontal strip of cards — GSAP moves this with translateX */
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  will-change: transform;
  left: 0;
}

/* ── SQUARE DESTINATION CARDS ────────────────────────────────────────────── */
.gs-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(190px, 20vw, 280px);
  height: clamp(190px, 20vw, 280px);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  transition: box-shadow 0.4s ease;
  -webkit-user-select: none;
  user-select: none;
}

/* Full-bleed destination photo */
.gs-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  --mask-solid: 45%;
  --mask-fade: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 var(--mask-solid), transparent var(--mask-fade));
  mask-image: linear-gradient(to bottom, #000 var(--mask-solid), transparent var(--mask-fade));
}

.gs-card:hover .gs-card-img {
  transform: scale(1.04);
}

/* Gradient fade on lower half for text legibility */
.gs-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(6, 4, 2, 0.90) 0%,
      rgba(8, 5, 3, 0.55) 35%,
      rgba(10, 6, 4, 0.10) 60%,
      transparent 100%);
}

/* Globe / icon — top left (Patagonia Express style) */
.gs-card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 5;
}

.gs-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 16px 16px;
  z-index: 4;
}

.gs-card-country {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(212, 175, 55, 0.85);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gs-card-title {
  font-family: 'Neue Montreal', 'Inter', sans-serif;
  font-size: clamp(18px, 2.0vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 5px;
}

.gs-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 12px;
}

.gs-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  font-family: 'Inter', sans-serif;
}

.gs-pax-avs {
  display: flex;
  align-items: center;
}

.gs-pax-avs img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  margin-left: -6px;
}

.gs-pax-avs img:first-child {
  margin-left: 0;
}

/* Active card: golden border + lifted shadow */
.gs-card--active {
  box-shadow:
    0 0 0 2px rgba(212, 175, 55, 0.9),
    0 0 50px rgba(212, 175, 55, 0.30),
    0 24px 60px rgba(0, 0, 0, 0.7);
}

/* Non-active cards: faded */
.gs-card--side {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* ── EDITORIAL TEXT — bottom-left of section ─────────────────────────────── */
.gs-editorial {
  position: absolute;
  z-index: 20;
  bottom: clamp(140px, 20vh, 220px);
  left: clamp(28px, 3.5vw, 60px);
  max-width: clamp(240px, 28vw, 380px);
  transition: bottom 0.4s var(--ease-spring);
}

.gs-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
  pointer-events: auto;
}

.btn-hero-primary {
  background: var(--accent-gold);
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(169, 124, 55, 0.25);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  background: #B6863D;
  border-color: #B6863D;
  box-shadow: 0 6px 20px rgba(169, 124, 55, 0.35);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.gs-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.8);
  margin-bottom: 14px;
}

.gs-eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(212, 175, 55, 0.65);
  flex-shrink: 0;
}

.gs-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 12px;
}

.gs-headline em {
  font-style: italic;
  color: #D4A44F;
}

.gs-film-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.gs-film-btn:hover {
  color: #fff;
}

.gs-play-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  transition: all 0.3s;
}

.gs-film-btn:hover .gs-play-wrap {
  border-color: rgba(212, 175, 55, 0.8);
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
}

/* ── NAVIGATION ARROWS ────────────────────────────────────────────────────── */
.gs-nav {
  position: absolute;
  z-index: 25;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-nav--left {
  right: clamp(28px, 3.5vw, 60px);
}

.gs-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 14px;
}

.gs-nav-btn:hover {
  border-color: rgba(212, 175, 55, 0.75);
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.12);
}

.gs-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ── BOTTOM BAR ──────────────────────────────────────────────────────────── */
.gs-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 25;
  padding: 24px clamp(28px, 3.5vw, 60px) 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(18, 14, 10, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-stats {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
}

.gs-stat {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
}

.gs-stat svg {
  color: rgba(212, 175, 55, 0.85);
  flex-shrink: 0;
}

.gs-stat div {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.gs-stat strong {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.gs-stat span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gs-pag {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gs-pag-curr {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 0.04em;
  min-width: 22px;
}

.gs-pag-total {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
}

.gs-pag-track {
  width: 60px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  overflow: hidden;
}

.gs-pag-fill {
  height: 100%;
  background: linear-gradient(to right, #D4AF37, #f5d060);
  border-radius: 1px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gs-scroll-cue {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.gs-scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  flex-shrink: 0;
}

.gs-scroll-dot {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  animation: gsScrollDot 2s ease-in-out infinite;
}

@keyframes gsScrollDot {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  75% {
    transform: translateY(7px);
    opacity: 0.15;
  }
}

/* Ambient glow element */
.gs-card-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.gs-card--active .gs-card-glow {
  opacity: 1;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .gs-card {
    width: clamp(200px, 48vw, 280px);
    height: clamp(200px, 48vw, 280px);
  }

  .gs-stats .gs-stat:nth-child(3) {
    display: none;
  }

  .gs-editorial {
    max-width: 220px;
  }

  .gs-traveler {
    height: 26vh;
  }
}

@media (max-width: 600px) {
  .gs-card {
    width: 68vw;
    height: 68vw;
  }

  .gs-editorial {
    display: block;
    position: absolute;
    top: 6vh;
    left: 20px;
    bottom: auto;
    max-width: 80%;
    z-index: 30;
  }

  .gs-headline {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
  }

  .gs-card-stage {
    top: 15%;
  }

  .gs-brand {
    top: 72px;
  }

  .gs-scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gs-scroll-dot {
    animation: none !important;
  }

  .gs-card-img {
    transition: none;
  }
}

/* ── PORTAL MODE perspective and overflow overrides ───────────────────── */
.gs-hero {
  perspective: 2500px;
  transform-style: preserve-3d;
}

.gs-card-stage {
  perspective: 2500px;
  transform-style: preserve-3d;
}

.gs-card-track {
  transform-style: preserve-3d;
}

.gs-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Keep card stage in place during portal mode and ensure it is fully hidden */
.gs-hero.gs-portal-mode .gs-card-stage {
  z-index: 40;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.6s ease, visibility 0.6s ease !important;
}

.gs-hero.gs-portal-mode .gs-bg-surface {
  display: block !important;
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 35%;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to top, #000 45%, transparent 55%);
  mask-image: linear-gradient(to top, #000 45%, transparent 55%);
}

.gs-hero.gs-portal-mode .gs-traveler {
  display: none !important;
}

.gs-hero.gs-portal-mode .gs-card-track {
  overflow: visible;
}

.gs-hero.gs-portal-mode .gs-card {
  overflow: visible;
}

/* ── PORTAL MODE DESTINATION CONTENT ────────────────────────────────────── */
.gs-dest-content {
  position: absolute;
  top: 72%;
  left: clamp(28px, 3.5vw, 60px);
  transform: translateY(-50%);
  z-index: 50;
  max-width: 420px;
  /* Constrained to 420px max-width per User Request */
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition: opacity 0.8s ease, visibility 0.8s ease; - managed by GSAP */
}

.gs-dest-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gs-dest-content-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-dest-country-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #D4AF37;
  text-transform: uppercase;
}

.gs-dest-title-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 0.96;
  margin: 0;
  letter-spacing: -0.02em;
}

.gs-dest-desc-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.gs-dest-stats-row {
  display: flex;
  gap: 16px;
  margin: 8px 0;
}

.gs-dest-stat-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gs-dest-stat-pill strong {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.gs-dest-stat-pill span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.gs-dest-book-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4AF37, #C59B27);
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  color: #060810;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.gs-dest-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #e5c050, #d4af37);
}

.gs-dest-book-btn:active {
  transform: translateY(0);
}

/* ── PORTAL EXIT BUTTON ─────────────────────────────────────────────────── */
.gs-portal-close {
  position: absolute;
  top: clamp(120px, 13.5vh, 150px);
  right: clamp(28px, 3.5vw, 60px);
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 246, 238, 0.75);
  border: 1px solid rgba(169, 124, 55, 0.3);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(30, 26, 21, 0.05);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.gs-portal-close svg {
  transition: transform 0.3s ease;
}

.gs-portal-close:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--bg-cream);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(169, 124, 55, 0.15);
}

.gs-portal-close:hover svg {
  transform: rotate(90deg);
}

.gs-portal-close.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   DYNAMIC DESTINATION DETAIL VIEW SYSTEM
   Aesthetics: White Editorial, Premium Serif, Soft Shadows, Warm Cream & Gold
   ========================================================================== */

.destination-detail-view {
  width: 100%;
  background: var(--bg-cream, #FAF6EE);
  color: var(--text-dark, #1E1A15);
  font-family: 'Inter', var(--font-sans);
  position: relative;
  min-height: 100vh;
  z-index: 50;
  overflow-x: hidden;
}

/* ── STICKY GLASS HEADER ─────────────────────────────────────────────────── */
.detail-header-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  transition: all 0.4s ease;
}

.detail-header {
  width: 90%;
  max-width: 1200px;
  height: 4.8rem;
  margin: 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 20px 40px rgba(30, 26, 21, 0.08),
    0 1px 3px rgba(30, 26, 21, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    inset 0 10px 20px rgba(255, 255, 255, 0.15),
    inset 0 0 12px rgba(169, 124, 55, 0.05);
}

.detail-header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem 0 2rem;
}

/* Header Buttons */
.btn-detail-back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 26, 21, 0.05);
  border: 1px solid rgba(30, 26, 21, 0.1);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-detail-back:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateX(-4px);
}

.btn-detail-share,
.btn-detail-heart {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(30, 26, 21, 0.1);
  padding: 9px;
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-detail-share:hover,
.btn-detail-heart:hover {
  background: var(--text-dark);
  color: #fff;
  transform: scale(1.08);
}

.btn-detail-heart.active {
  background: #FF4757;
  border-color: #FF4757;
  color: #fff;
}

/* ── 1. HERO SECTION ─────────────────────────────────────────────────────── */
.detail-hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 2.5rem 3rem 2.5rem;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(244, 240, 230, 0.5) 0%, rgba(250, 246, 238, 1) 90%);
}

.detail-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.detail-hero-left {
  max-width: 580px;
}

.detail-tagline {
  color: var(--accent-gold, #A97C37);
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.detail-country-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--detail-accent, var(--accent-gold));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.detail-short-story {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(30, 26, 21, 0.75);
  margin-bottom: 2.2rem;
}

.btn-detail-explore-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-detail-explore-cta:hover {
  background: var(--detail-accent, var(--accent-gold));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hero Right: Floating Artwork Container */
.detail-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.detail-hero-image-wrapper {
  width: 100%;
  max-width: 580px;
  height: 580px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(30, 26, 21, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transform-style: preserve-3d;
}

.detail-hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 26, 21, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* ── 2. STATS SECTION ────────────────────────────────────────────────────── */
.detail-stats-section {
  padding: 5rem 0;
}

.detail-section-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}

.detail-section-title-sub::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 1.5px;
  background: var(--detail-accent, var(--accent-gold));
}

.detail-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.detail-stat-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  padding: 2rem 1.8rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detail-stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--detail-accent, var(--accent-gold));
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.detail-stat-card i {
  color: var(--detail-accent, var(--accent-gold));
  width: 24px;
  height: 24px;
}

.detail-stat-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(30, 26, 21, 0.45);
}

.detail-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── 3. STORY SECTION ────────────────────────────────────────────────────── */
.detail-story-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.detail-story-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0.8rem;
  margin-bottom: 2.2rem;
}

.detail-story-quote-box {
  border-left: 2px solid var(--detail-accent, var(--accent-gold));
  padding-left: 1.8rem;
  margin-bottom: 2rem;
}

.detail-story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.detail-story-quote-author {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(30, 26, 21, 0.5);
}

.detail-story-paragraph {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(30, 26, 21, 0.75);
  margin-bottom: 2.5rem;
}

.detail-history-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.detail-history-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(30, 26, 21, 0.65);
}

/* ── 4. WHY VISIT ────────────────────────────────────────────────────────── */
.detail-why-section {
  display: none !important;
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-why-header {
  margin-bottom: 3.5rem;
}

.detail-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

.detail-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.detail-why-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
  backdrop-filter: blur(20px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(130%) !important;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 12px 20px rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.detail-why-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    inset 0 12px 20px rgba(255, 255, 255, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: linear-gradient(135deg, rgba(169, 124, 55, 0.18) 0%, rgba(169, 124, 55, 0.06) 100%) !important;
}

.detail-why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(169, 124, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--detail-accent, var(--accent-gold));
}

.detail-why-icon-box i {
  width: 20px;
  height: 20px;
}

.detail-why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
}

.detail-why-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(30, 26, 21, 0.6);
}

/* ── 5. EXPERIENCE CATEGORIES ────────────────────────────────────────────── */
.detail-experiences-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-exp-header {
  margin-bottom: 3rem;
}

.detail-experiences-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.detail-exp-card {
  position: relative;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.06);
}

.detail-exp-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.detail-exp-card:hover .detail-exp-card-img {
  transform: scale(1.08);
}

.detail-exp-card-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 26, 21, 0.8) 0%, rgba(30, 26, 21, 0.1) 60%, rgba(30, 26, 21, 0) 100%);
}

.detail-exp-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem 1.8rem;
  color: #fff;
}

.detail-exp-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.detail-exp-card-icon i {
  width: 16px;
  height: 16px;
  color: #fff;
}

.detail-exp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.detail-exp-card-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ── 6. HANDPICKED HIGHLIGHTS ────────────────────────────────────────────── */
.detail-highlights-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-highlights-header {
  margin-bottom: 3rem;
}

.detail-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.detail-highlight-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(30, 26, 21, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 26, 21, 0.04);
}

.detail-hl-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.detail-hl-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.detail-highlight-card:hover .detail-hl-img {
  transform: scale(1.08);
}

.detail-hl-content {
  padding: 1.8rem;
}

.detail-hl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.detail-hl-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(30, 26, 21, 0.55);
}

/* ── 7. CURATED PACKAGES ──────────────────────────────────────────────────── */
.detail-packages-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-packages-header {
  margin-bottom: 3.5rem;
}

.detail-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.detail-package-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(30, 26, 21, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-package-card:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 45px rgba(30, 26, 21, 0.05);
}

.detail-pkg-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.detail-pkg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.detail-package-card:hover .detail-pkg-img {
  transform: scale(1.06);
}

.detail-pkg-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.detail-pkg-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detail-pkg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.detail-pkg-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-pkg-duration {
  font-size: 0.78rem;
  color: rgba(30, 26, 21, 0.5);
  font-weight: 500;
}

.detail-pkg-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--detail-accent, var(--accent-gold));
}

.btn-detail-pkg-book {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-detail-pkg-book:hover {
  background: var(--detail-accent, var(--accent-gold));
}

/* ── 8. GALLERY ──────────────────────────────────────────────────────────── */
.detail-gallery-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.2rem;
}

.detail-gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  height: 280px;
}

.detail-gallery-item:nth-child(2),
.detail-gallery-item:nth-child(5) {
  height: 380px;
  grid-row: span 2;
}

.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-gallery-item:hover img {
  transform: scale(1.05);
}

.detail-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 26, 21, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-gallery-item:hover .detail-gallery-overlay {
  opacity: 1;
}

/* ── GALLERY LIGHTBOX ────────────────────────────────────────────────────── */
.detail-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 12, 10, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.detail-lightbox.active {
  opacity: 1;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 80vh;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.btn-lightbox-close,
.btn-lightbox-prev,
.btn-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-lightbox-close {
  top: 30px;
  right: 30px;
  padding: 12px;
  border-radius: 50%;
}

.btn-lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px;
  border-radius: 50%;
}

.btn-lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px;
  border-radius: 50%;
}

.btn-lightbox-close:hover,
.btn-lightbox-prev:hover,
.btn-lightbox-next:hover {
  background: #fff;
  color: var(--text-dark);
}

/* ── 9. TIMELINE ─────────────────────────────────────────────────────────── */
.detail-timeline-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-timeline-wrapper {
  max-width: 900px;
  margin: 3.5rem auto 0 auto;
  position: relative;
}

.detail-timeline-line {
  position: absolute;
  top: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  background: rgba(30, 26, 21, 0.05);
}

.detail-timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--detail-accent, var(--accent-gold));
  transition: height 0.1s ease;
}

.detail-timeline-item {
  position: relative;
  padding-left: 90px;
  margin-bottom: 4rem;
}

.detail-timeline-item:last-child {
  margin-bottom: 0;
}

.detail-timeline-dot {
  position: absolute;
  left: 31px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-cream, #FAF6EE);
  border: 4px solid rgba(30, 26, 21, 0.1);
  z-index: 1;
  transition: all 0.4s ease;
}

.detail-timeline-item.active .detail-timeline-dot {
  border-color: var(--detail-accent, var(--accent-gold));
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(169, 124, 55, 0.4);
}

.detail-timeline-day {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--detail-accent, var(--accent-gold));
  margin-bottom: 0.4rem;
}

.detail-timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.detail-timeline-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(30, 26, 21, 0.6);
  max-width: 700px;
}

/* ── 10. MAP SECTION ─────────────────────────────────────────────────────── */
.detail-map-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-map-container {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  background: #fff;
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(30, 26, 21, 0.03);
}

.detail-map-graphic {
  background: #FAF6EE url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1200&q=80') no-repeat center;
  background-size: cover;
  height: 450px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.detail-map-svg {
  width: 100%;
  height: 100%;
}

.map-route-line {
  stroke-dasharray: 8;
  animation: mapFlow 30s linear infinite;
}

@keyframes mapFlow {
  to {
    stroke-dashoffset: -1000;
  }
}

.detail-map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--detail-accent, var(--accent-gold));
  border: 3px solid #fff;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-map-dot:hover {
  transform: translate(-50%, -50%) scale(1.35);
  box-shadow: 0 0 15px var(--detail-accent, var(--accent-gold));
}

.detail-map-dot-label {
  position: absolute;
  background: var(--text-dark);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detail-map-dot:hover+.detail-map-dot-label {
  opacity: 1;
}

.detail-map-sidebar {
  padding: 1.5rem 1rem;
}

.detail-map-sidebar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30, 26, 21, 0.05);
  padding-bottom: 0.6rem;
}

.detail-map-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detail-map-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(30, 26, 21, 0.02);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.detail-map-item span.landmark-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(30, 26, 21, 0.4);
  font-weight: 700;
}

/* ── 11. REVIEWS ─────────────────────────────────────────────────────────── */
.detail-reviews-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(30, 26, 21, 0.05);
}

.detail-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.detail-review-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
  backdrop-filter: blur(20px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(130%) !important;
  border-radius: 28px;
  padding: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 12px 20px rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.detail-review-card:hover {
  transform: translateY(-5px) scale(1.01) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    inset 0 12px 20px rgba(255, 255, 255, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: linear-gradient(135deg, rgba(169, 124, 55, 0.18) 0%, rgba(169, 124, 55, 0.06) 100%) !important;
}

.detail-review-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.detail-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.detail-review-meta h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
}

.detail-review-stars {
  color: #FFA502;
  font-size: 0.8rem;
}

.detail-review-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(30, 26, 21, 0.65);
  font-style: italic;
}

/* ── 12. CTA SECTION ─────────────────────────────────────────────────────── */
.detail-cta-section {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2.5rem;
}

.detail-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 12, 10, 0.55);
  z-index: 1;
}

.detail-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}

.detail-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.detail-cta-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.2rem;
}

.btn-detail-cta-book {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--detail-accent, var(--accent-gold));
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(169, 124, 55, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-detail-cta-book:hover {
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* ── 13. RELATED FOOTER ───────────────────────────────────────────────────── */
.detail-related-footer {
  padding: 6rem 0;
}

.detail-related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.detail-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.detail-rel-card {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: all 0.35s ease;
}

.detail-rel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.detail-rel-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.detail-rel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 26, 21, 0.7) 0%, rgba(30, 26, 21, 0) 100%);
}

.detail-rel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: #fff;
}

.detail-rel-country {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.3rem;
}

.detail-rel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
}

/* ── RESPONSIVE STYLES ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .detail-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .detail-hero-left {
    max-width: 100%;
    text-align: center;
  }

  .detail-country-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .detail-hero-right {
    order: -1;
  }

  .detail-hero-image-wrapper {
    height: 450px;
  }

  .detail-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .detail-why-grid,
  .detail-experiences-carousel,
  .detail-highlights-grid,
  .detail-packages-grid,
  .detail-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .detail-header-wrapper {
    padding: 0.8rem 1rem;
  }

  .detail-header {
    padding: 0.5rem 1rem;
  }

  .detail-header .brand-sub,
  .detail-header .wallet-pill {
    display: none;
  }

  .detail-stats-grid {
    grid-template-columns: 1fr;
  }

  .detail-why-grid,
  .detail-experiences-carousel,
  .detail-highlights-grid,
  .detail-packages-grid,
  .detail-related-grid,
  .detail-gallery-masonry,
  .detail-reviews-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery-item {
    height: 250px !important;
  }

  .detail-map-container {
    grid-template-columns: 1fr;
  }
}

/* ── STICKY SUBNAV BAR (MakeMyTrip Style) ────────────────────────────────── */
.detail-subnav-wrapper {
  position: sticky;
  top: 90px;
  width: 100%;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 26, 21, 0.06);
  z-index: 99;
  display: none;
  /* Managed by JS showDestinationView / showHomeView */
  transition: all 0.3s ease;
}

.detail-subnav {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  padding: 0.9rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
}

.detail-subnav::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.subnav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted, #6C665F);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: all 0.3s ease;
}

.subnav-link:hover,
.subnav-link.active {
  color: var(--detail-accent, var(--accent-gold));
}

.subnav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--detail-accent, var(--accent-gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.subnav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Adjust layout offsets for smooth scroll targets */
#detail-overview,
#detail-why,
#detail-experiences,
#detail-highlights,
#detail-packages,
#detail-itinerary,
#detail-map,
#detail-reviews {
  scroll-margin-top: 180px;
  /* Offset so headers do not overlap title when smooth-scrolled */
}

/* Responsive adjustments for subnav */
@media (max-width: 1024px) {
  .detail-subnav-wrapper {
    top: 75px;
  }
}

@media (max-width: 768px) {
  .detail-subnav-wrapper {
    top: 60px;
  }

  .detail-subnav {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

/* ── LUXURY ITINERARY REDESIGN ──────────────────────────────────────────── */
.luxury-itinerary-section {
  background: #F8F5EF !important;
  padding: 4.5rem 0;
  overflow: hidden;
}

.luxury-itinerary-header {
  max-width: 950px;
  margin: 0 auto 3rem auto;
  padding: 0 2.5rem;
}

.luxury-itinerary-sup {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #A97C37;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.luxury-itinerary-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 300;
  color: #1E2C22;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.luxury-itinerary-p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #6C665F;
  font-style: italic;
}

.luxury-itinerary-container {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  gap: 3.5rem;
  position: relative;
}

/* Timeline Navigation Column */
.luxury-timeline-sidebar {
  width: 80px;
  position: relative;
  flex-shrink: 0;
}

.luxury-timeline-track {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(30, 26, 21, 0.08);
  border-radius: 1px;
}

.luxury-timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--detail-accent, #A97C37);
  box-shadow: 0 0 10px rgba(169, 124, 55, 0.4);
  border-radius: 1px;
  transition: height 0.1s linear;
}

.luxury-timeline-nav-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 10px 0;
}

.luxury-timeline-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 6.2rem;
  /* space out markers */
}

.luxury-timeline-nav-item:last-child {
  margin-bottom: 0;
}

.luxury-timeline-nav-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(30, 26, 21, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.luxury-timeline-nav-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(30, 26, 21, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-timeline-nav-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(30, 26, 21, 0.4);
  margin-top: 0.6rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* Active state for timeline circles */
.luxury-timeline-nav-item.active .luxury-timeline-nav-circle {
  border-color: #A97C37;
  background: #A97C37;
  box-shadow: 0 0 15px rgba(169, 124, 55, 0.5);
  transform: scale(1.25);
}

.luxury-timeline-nav-item.active .luxury-timeline-nav-pulse {
  background: #FFF;
  transform: scale(1.1);
  animation: pulseAnimation 2s infinite ease-in-out;
}

.luxury-timeline-nav-item.active .luxury-timeline-nav-label {
  color: #A97C37;
  font-weight: 800;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* Cards Column */
.luxury-timeline-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Cinematic Cards */
.luxury-day-card {
  max-width: 950px;
  height: 380px;
  border-radius: 34px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(40px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(130%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 12px 20px rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.02) !important;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
  padding: 20px !important;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  opacity: 0.55;
  transform: scale(0.96);
  filter: blur(1.5px);
  overflow: hidden;
}

.luxury-day-card.active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    inset 0 12px 20px rgba(255, 255, 255, 0.25),
    0 20px 45px rgba(0, 0, 0, 0.05) !important;
}

.luxury-day-card:hover {
  transform: translateY(-8px) scale(1.005) !important;
}

.luxury-day-card-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  z-index: 2;
}

.luxury-day-number-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: #A97C37;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.luxury-day-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.75rem !important;
  font-weight: 500 !important;
  color: #1E2C22 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.4rem !important;
}

.luxury-day-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  color: #6C665F;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.luxury-day-location i {
  width: 14px;
  height: 14px;
  color: #A97C37;
}

.luxury-day-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.luxury-day-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  background: #A97C37;
  color: #FFFFFF !important;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(169, 124, 55, 0.15);
}

.luxury-day-btn:hover {
  background: #1E2C22;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(30, 44, 34, 0.2);
}

.luxury-day-btn i {
  width: 14px;
  height: 14px;
}

.luxury-day-card-right {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.luxury-day-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.luxury-day-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.luxury-day-card.active .luxury-day-img {
  transform: scale(1.08);
}

.luxury-day-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating glass metrics panel */
.luxury-day-metrics-panel {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(25px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(120%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 18px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.luxury-day-card:hover .luxury-day-metrics-panel {
  background: rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

.luxury-metric-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  text-align: center;
}

.luxury-metric-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  color: #FFFFFF;
}

.luxury-metric-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.luxury-metric-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
}

/* Floating Top Right Circular Glass Button */
.luxury-day-floating-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A97C37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.luxury-day-floating-icon:hover {
  transform: scale(1.1);
  background: #FFFFFF !important;
  color: #1E2C22;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.luxury-day-floating-icon i {
  width: 18px;
  height: 18px;
}

/* Customizable Bottom CTA */
.luxury-itinerary-cta-container {
  max-width: 950px;
  margin: 5rem auto 0 auto;
  padding: 0 2.5rem;
}

.luxury-itinerary-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(40px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(130%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 40px !important;
  padding: 24px 34px !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 12px 20px rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease;
}

.luxury-itinerary-custom-cta:hover {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    inset 0 12px 20px rgba(255, 255, 255, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.04) !important;
}

.luxury-cta-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(169, 124, 55, 0.08);
  border: 1px solid rgba(169, 124, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A97C37;
  flex-shrink: 0;
}

.luxury-cta-icon-box i {
  width: 22px;
  height: 22px;
}

.luxury-cta-text-box {
  flex-grow: 1;
  margin-left: 20px;
}

.luxury-cta-text-box h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E2C22;
  margin-bottom: 2px;
}

.luxury-cta-text-box p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #777;
}

.luxury-cta-gold-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  background: #A97C37;
  color: #FFFFFF !important;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(169, 124, 55, 0.15);
}

.luxury-cta-gold-btn:hover {
  background: #1E2C22;
  padding-right: 2.2rem;
  box-shadow: 0 6px 18px rgba(30, 44, 34, 0.2);
}

.luxury-cta-gold-btn i {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.luxury-cta-gold-btn:hover i {
  transform: translateX(4px);
}

/* Mobile layout adjustments */
@media (max-width: 991px) {
  .luxury-itinerary-container {
    flex-direction: column;
    gap: 2rem;
  }

  .luxury-timeline-sidebar {
    display: none;
  }

  .luxury-day-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .luxury-day-card-right {
    height: 250px;
  }

  .luxury-itinerary-custom-cta {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }

  .luxury-cta-text-box {
    margin-left: 0;
  }
}

/* Premium Interactive Nest Calculator Wizard */
.nest-panels-wrapper {
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 20px !important;
  padding: 1.8rem !important;
  box-shadow: 0 8px 24px rgba(185, 138, 69, 0.02) !important;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.nest-tab-content {
  display: none;
  opacity: 0;
  flex-direction: column;
  gap: 1rem;
}

.nest-tab-content.active {
  display: flex;
  opacity: 1;
}

.panel-hint-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

.btn-next-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(185, 138, 69, 0.08);
  border: 1px solid rgba(185, 138, 69, 0.15);
  color: #B98A45;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-next-step:hover {
  background: #B98A45;
  color: #FFFFFF;
  border-color: #B98A45;
  transform: translateY(-1px);
}

.btn-next-step i,
.btn-reset-steps i {
  width: 14px;
  height: 14px;
}

/* Growth Stats Grid */
.growth-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.growth-stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(185, 138, 69, 0.08);
}

.growth-stat-box.highlight-match {
  border-color: rgba(16, 172, 132, 0.2);
  background: rgba(16, 172, 132, 0.03);
}

.growth-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
}

.growth-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.highlight-match .growth-value {
  color: #10AC84;
}

/* Travel Summary Card */
.travel-summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(185, 138, 69, 0.05);
  border: 1px solid rgba(185, 138, 69, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.travel-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.travel-sum-row span {
  font-weight: 500;
  color: var(--text-muted);
}

.travel-sum-row strong {
  font-weight: 700;
}

.btn-reset-steps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px dashed rgba(30, 26, 21, 0.2);
  background: transparent;
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-reset-steps:hover {
  background: rgba(30, 26, 21, 0.04);
  border-color: rgba(30, 26, 21, 0.4);
}

/* Redirection Button below showcase card */
.btn-goto-nest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 12px 28px;
  border-radius: 14px;
  background: var(--text-dark);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(30, 26, 21, 0.12);
  transition: all 0.3s var(--ease-spring);
  margin-top: 2.25rem;
}

.btn-goto-nest:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 18px rgba(185, 138, 69, 0.3);
}

.btn-goto-nest i {
  width: 14px;
  height: 14px;
}

/* Dashboard Layout */
.nest-dashboard-view {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.dashboard-header-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
  padding: 1.5rem 4rem 0;
}

.dashboard-header {
  width: 100%;
  max-width: 1600px;
  height: 4.8rem;
  margin: 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 20px 40px rgba(30, 26, 21, 0.08),
    0 1px 3px rgba(30, 26, 21, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    inset 0 10px 20px rgba(255, 255, 255, 0.15),
    inset 0 0 12px rgba(169, 124, 55, 0.05);
}

.dashboard-header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem 0 2rem;
}

.btn-dashboard-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(169, 124, 55, 0.2);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dashboard-back:hover {
  background: #FFFFFF;
  border-color: var(--accent-gold);
  transform: translateX(-3px);
}

.btn-dashboard-back i {
  width: 14px;
  height: 14px;
}

.dashboard-content-container {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.dashboard-content-container.nest-premium-dashboard {
  max-width: 1600px !important;
  width: 100% !important;
  padding: 0 4rem !important;
  margin: 3rem auto 0;
  box-sizing: border-box;
}

/* Dashboard Card Section Base Layout */
.dashboard-card-section {
  padding: 2.5rem !important;
  border-radius: 32px !important;
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(35px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(35px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 30px 60px rgba(185, 138, 69, 0.05),
    0 1px 3px rgba(30, 26, 21, 0.02) !important;
  box-sizing: border-box;
}

/* Custom Gold Dashboard Range Slider */
#dash-slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(169, 124, 55, 0.25) 0%, rgba(169, 124, 55, 0.06) 100%) !important;
  outline: none;
  margin: 1.25rem 0;
}

#dash-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold) !important;
  border: 3.5px solid #FFFFFF !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(169, 124, 55, 0.4);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1.25), box-shadow 0.25s cubic-bezier(0.25, 0.8, 0.25, 1.25);
}

#dash-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 6px 20px rgba(169, 124, 55, 0.6);
}

/* Redesigned Premium Nest Dashboard Grid */
.nest-dashboard-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2rem;
  align-items: start;
}

.nest-main-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nest-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 6rem;
}

/* Immersive Holdings Hero Card */
.premium-holdings-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  padding: 3rem !important;
  border-radius: 32px !important;
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(35px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(35px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 30px 60px rgba(185, 138, 69, 0.05),
    0 1px 3px rgba(30, 26, 21, 0.02) !important;
  overflow: hidden;
}

.premium-holdings-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1200&q=80') !important;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.05 !important;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 180%;
  background: radial-gradient(circle, rgba(185, 138, 69, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

.dashboard-overtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dashboard-total-amount {
  font-size: clamp(3.2rem, 4vw, 4.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0.2rem 0;
  line-height: 1.1;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.dashboard-plan-status {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0.3rem 0 1.2rem;
}

.dashboard-plan-status strong {
  font-weight: 700;
}

.dashboard-bar-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.dashboard-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dashboard-bar-label strong {
  color: #10AC84;
}

.premium-progress {
  width: 100%;
  height: 10px;
  background: rgba(30, 26, 21, 0.06);
  border-radius: 99px;
  position: relative;
  overflow: visible;
}

.dashboard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold) 0%, #10AC84 100%);
  border-radius: 99px;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-milestone-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.progress-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(169, 124, 55, 0.4);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.progress-marker.reached {
  background: #10AC84;
  border-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(16, 172, 132, 0.4);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  border-left: 1px dashed rgba(169, 124, 55, 0.2);
  padding-left: 3rem;
}

.dashboard-quick-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dashboard-quick-stat span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-quick-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}

.status-ready {
  color: #10AC84 !important;
}

.status-growing {
  color: var(--accent-gold) !important;
}

/* Autopilot Plan Customizer Card */
.autopilot-customizer {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.badge-interactive {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(185, 138, 69, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.customizer-calculator-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2.5rem;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.duration-selector-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.selector-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-projection-box {
  background: rgba(185, 138, 69, 0.04) !important;
  border: 1px solid rgba(185, 138, 69, 0.15) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.proj-header {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proj-metrics {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.proj-metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proj-metric span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.proj-metric strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.btn-apply-settings {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px;
  border-radius: 12px;
  background: var(--text-dark);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-apply-settings:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 138, 69, 0.2);
}

/* Autopilot Destination Escape Preview Card */
.projection-preview-card {
  position: relative;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.25rem 0;
  border: 1px solid rgba(169, 124, 55, 0.2);
}

.proj-preview-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.projection-preview-card:hover .proj-preview-image {
  transform: scale(1.1);
}

.proj-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 26, 21, 0.2) 0%, rgba(30, 26, 21, 0.75) 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem;
  box-sizing: border-box;
}

.preview-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.preview-badge i {
  width: 10px;
  height: 10px;
}

.preview-dest-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0.2rem 0 0;
  font-family: var(--font-serif);
}

/* Wallet Active Gold Pulsing Glow */
@keyframes gold-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(185, 138, 69, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(185, 138, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(185, 138, 69, 0);
  }
}

.glowing-pulse {
  animation: gold-pulse 2s infinite;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 8px rgba(185, 138, 69, 0.25);
}

/* Travel Milestones Map */
.milestones-map-section {
  display: flex;
  flex-direction: column;
}

.milestones-count-pill {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  background: #10AC84;
  color: #FFFFFF;
}

.section-subtitle-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  margin-bottom: 1.25rem;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.dash-milestone-card {
  position: relative;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease, opacity 0.4s ease;
}

/* Glassmorphic Shimmer Shine Glide */
.dash-milestone-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
}

.dash-milestone-card:hover::after {
  left: 150%;
  transition: left 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.dash-milestone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 26, 21, 0.25) 0%, rgba(30, 26, 21, 0.78) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

/* Locked State (Ultra-Premium Desaturation Overlay) */
.dash-milestone-card.locked {
  filter: grayscale(85%) contrast(90%);
  opacity: 0.85;
}

.dash-milestone-card.locked::before {
  background: linear-gradient(180deg, rgba(30, 26, 21, 0.5) 0%, rgba(30, 26, 21, 0.88) 100%) !important;
}

/* Locked State Reveal on Hover */
.dash-milestone-card.locked:hover {
  filter: grayscale(0%) contrast(100%);
  opacity: 1;
}

.dash-milestone-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--accent-gold);
  box-shadow:
    0 20px 40px rgba(185, 138, 69, 0.15),
    0 2px 5px rgba(30, 26, 21, 0.05);
}

.dash-milestone-card:hover::before {
  background: linear-gradient(180deg, rgba(30, 26, 21, 0.1) 0%, rgba(30, 26, 21, 0.82) 100%);
}

.dash-milestone-card .card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-milestone-card .card-icon-pill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dash-milestone-card .card-icon-pill i {
  width: 12px;
  height: 12px;
  color: #FFFFFF;
}

.dash-milestone-card .card-status-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.dash-milestone-card.unlocked .card-status-dot {
  background: #10AC84;
  border: 1.5px solid #FFFFFF;
}

.dash-milestone-card.unlocked .card-status-dot i {
  color: #FFFFFF;
  width: 10px;
  height: 10px;
  stroke-width: 3px;
}

.dash-milestone-card.locked .card-status-dot {
  background: rgba(30, 26, 21, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.dash-milestone-card.locked .card-status-dot i {
  color: rgba(255, 255, 255, 0.8);
  width: 9px;
  height: 9px;
}

.dash-milestone-card.locked:hover .card-status-dot {
  background: var(--accent-gold);
  border-color: #FFFFFF;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(185, 138, 69, 0.6);
}

.dash-milestone-card .card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dash-milestone-card h4 {
  color: #FFFFFF;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dash-milestone-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.dash-milestone-card .card-badge-unlocked {
  color: #10AC84;
  font-weight: 700;
}

.dash-milestone-card .card-badge-locked {
  color: var(--accent-gold);
  font-weight: 700;
}

/* SIDEBAR COMPONENTS */
.sidebar-card {
  border-radius: 28px !important;
  padding: 2rem !important;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(35px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(35px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.sidebar-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  border-bottom: 1px dashed rgba(169, 124, 55, 0.15);
  padding-bottom: 0.8rem;
}

.sidebar-card-title i {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
}

/* Toggle Switches */
.toggle-control-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.toggle-info strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.toggle-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Switch Toggle Styling */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 26, 21, 0.08);
  transition: .4s;
  border: 1px solid rgba(169, 124, 55, 0.1);
}

.slider-switch:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:checked+.slider-switch {
  background-color: #10AC84;
  border-color: #10AC84;
}

input:focus+.slider-switch {
  box-shadow: 0 0 1px #10AC84;
}

input:checked+.slider-switch:before {
  transform: translateX(20px);
}

.slider-switch.round {
  border-radius: 34px;
}

.slider-switch.round:before {
  border-radius: 50%;
}

.sidebar-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.premium-btn-gold {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px;
  border-radius: 12px;
  background: var(--text-dark);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-btn-gold:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.premium-btn-gold i {
  color: var(--accent-gold);
}

.premium-btn-gold:hover i {
  color: #FFFFFF;
}

.premium-btn-danger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  color: #EB5757;
  border: 1px dashed rgba(235, 87, 87, 0.4);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-btn-danger:hover {
  background: rgba(235, 87, 87, 0.05);
  border-color: #EB5757;
  transform: translateY(-2px);
}

.premium-btn-danger i {
  width: 14px;
  height: 14px;
}

/* Growth SVG Area Chart */
.growth-chart-container {
  width: 100%;
  height: 120px;
  margin-top: 0.5rem;
  position: relative;
}

.growth-chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.growth-line {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.growth-area {
  fill: url(#chart-grad);
}

.chart-dot {
  fill: #FFFFFF;
  stroke: var(--accent-gold);
  stroke-width: 2;
  transition: r 0.2s ease;
  cursor: pointer;
}

.chart-dot:hover {
  r: 6;
  fill: var(--accent-gold);
}

.ledger-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(169, 124, 55, 0.15);
  padding-top: 1.2rem;
  margin-top: 0.8rem;
}

.ledger-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 700;
}

.ledger-title i {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

.ledger-filter-tags {
  display: flex;
  gap: 0.35rem;
}

.filter-tag {
  background: rgba(30, 26, 21, 0.04);
  border: 1px solid rgba(169, 124, 55, 0.08);
  font-size: 0.64rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.filter-tag.active,
.filter-tag:hover {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
}

.ledger-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 0.3rem;
}

.ledger-list::-webkit-scrollbar {
  width: 3px;
}

.ledger-list::-webkit-scrollbar-thumb {
  background: rgba(169, 124, 55, 0.2);
  border-radius: 99px;
}

.ledger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.ledger-item:hover {
  transform: translateX(2px);
  border-color: rgba(185, 138, 69, 0.25);
  background: rgba(255, 255, 255, 0.65);
}

.ledger-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ledger-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ledger-icon.save {
  background: rgba(16, 172, 132, 0.1);
}

.ledger-icon.save i {
  color: #10AC84;
  width: 13px;
  height: 13px;
}

.ledger-icon.boost {
  background: rgba(185, 138, 69, 0.1);
}

.ledger-icon.boost i {
  color: var(--accent-gold);
  width: 13px;
  height: 13px;
}

.ledger-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ledger-info strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ledger-info span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.ledger-amount {
  font-size: 0.88rem;
  font-weight: 800;
}

.ledger-amount.positive {
  color: #10AC84;
}

.ledger-amount.boost {
  color: var(--accent-gold);
}

/* ==============================================
   INTERACTIVE MODAL STYLING
   ============================================== */
.nest-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 14, 10, 0.55);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.nest-modal-card {
  width: 90%;
  max-width: 480px;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(35px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 35px 70px rgba(30, 26, 21, 0.18) !important;
  padding: 2.25rem !important;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(30, 26, 21, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(30, 26, 21, 0.1);
  transform: rotate(90deg);
}

.modal-close-btn i {
  width: 14px;
  height: 14px;
  color: var(--text-dark);
}

.modal-icon-header {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.modal-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon-circle.gold {
  background: rgba(185, 138, 69, 0.12);
  border: 1px solid rgba(185, 138, 69, 0.25);
}

.modal-icon-circle.gold i {
  color: var(--accent-gold);
  width: 22px;
  height: 22px;
}

.modal-icon-circle.danger {
  background: rgba(235, 87, 87, 0.1);
  border: 1px solid rgba(235, 87, 87, 0.25);
}

.modal-icon-circle.danger i {
  color: #EB5757;
  width: 22px;
  height: 22px;
}

.modal-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.modal-description {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  padding: 0 0.5rem;
}

.boost-preset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(169, 124, 55, 0.2);
  padding: 10px 0;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.preset-btn:hover,
.preset-btn.active {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
  transform: translateY(-1px);
}

.boost-input-field {
  position: relative;
  width: 100%;
}

.currency-prefix {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
}

.boost-input-field input {
  width: 100%;
  padding: 14px 1.25rem 14px 2.5rem;
  border-radius: 14px;
  border: 1px solid rgba(169, 124, 55, 0.25);
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  outline: none;
  box-sizing: border-box;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
}

.boost-input-field input:focus {
  border-color: var(--accent-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(185, 138, 69, 0.08);
}

.modal-buttons-row {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-modal-cancel {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  background: rgba(30, 26, 21, 0.05);
  border: 1px solid transparent;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal-cancel:hover {
  background: rgba(30, 26, 21, 0.1);
}

.btn-modal-confirm {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  background: var(--text-dark);
  color: #FFFFFF;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal-confirm:hover:not(:disabled) {
  background: var(--accent-gold);
  transform: translateY(-1px);
}

.btn-modal-confirm:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-modal-confirm.danger {
  background: #EB5757;
}

.btn-modal-confirm.danger:hover:not(:disabled) {
  background: #D94444;
}

/* Exit Plan breakdown */
.exit-breakdown-list {
  background: rgba(30, 26, 21, 0.03);
  border: 1px solid rgba(169, 124, 55, 0.1);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.breakdown-row strong {
  color: var(--text-dark);
}

.breakdown-row .green-text {
  color: #10AC84;
}

.breakdown-divider {
  height: 1px;
  background: rgba(169, 124, 55, 0.15);
  margin: 0.25rem 0;
}

.total-row {
  font-size: 0.95rem;
}

.total-row span {
  font-weight: 700;
  color: var(--text-dark);
}

.total-row strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.exit-destination-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(185, 138, 69, 0.05);
  border: 1px solid rgba(185, 138, 69, 0.15);
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.exit-destination-box i {
  color: var(--accent-gold);
  width: 20px;
  height: 20px;
}

.exit-destination-box .dest-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.exit-destination-box .dest-info strong {
  font-size: 0.76rem;
  color: var(--text-dark);
}

.exit-destination-box .dest-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.exit-verification-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exit-verification-input label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.exit-verification-input input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(169, 124, 55, 0.2);
  background: #FFFFFF;
  outline: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.exit-verification-input input:focus {
  border-color: #EB5757;
}

/* Milestone detail modal */
.milestone-detail-card {
  max-width: 520px;
  padding: 0 !important;
  overflow: hidden;
  gap: 0;
}

.milestone-detail-card .modal-close-btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  z-index: 10;
}

.milestone-detail-card .modal-close-btn i {
  color: #FFFFFF;
}

.milestone-modal-hero {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.milestone-modal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 100%);
}

.milestone-modal-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  background: var(--text-dark);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.milestone-modal-content {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.milestone-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.milestone-header-row .modal-title {
  text-align: left;
}

.milestone-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.milestone-status-indicator i {
  width: 14px;
  height: 14px;
}

.milestone-status-indicator .unlocked-icon {
  color: #10AC84;
}

.milestone-status-indicator .unlocked-text {
  color: #10AC84;
}

.milestone-status-indicator .locked-icon {
  color: var(--accent-gold);
}

.milestone-status-indicator .locked-text {
  color: var(--accent-gold);
}

.milestone-detail-card .modal-description {
  text-align: left;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.milestone-features-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(30, 26, 21, 0.03);
  border-radius: 14px;
  padding: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-item i {
  color: #10AC84;
  width: 12px;
  height: 12px;
}

.milestone-progress-summary {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.progress-sum-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.progress-sum-values {
  display: flex;
  justify-content: flex-end;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-dark);
}

.progress-sum-bar {
  width: 100%;
  height: 8px;
  background: rgba(30, 26, 21, 0.06);
  border-radius: 99px;
  overflow: hidden;
}

.progress-sum-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 99px;
  transition: width 0.5s ease;
}

.milestone-detail-card .modal-buttons-row {
  padding: 0 1.75rem 1.75rem;
  margin: 0;
}

/* Animations */
.animate-zoom {
  animation: zoom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoom {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive Dashboard Redesign */
@media (max-width: 1100px) {
  .nest-dashboard-layout {
    grid-template-columns: 1fr;
  }

  .nest-sidebar {
    position: static;
  }

  .premium-holdings-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-right {
    border-left: none;
    border-top: 1px dashed rgba(169, 124, 55, 0.2);
    padding-left: 0;
    padding-top: 2rem;
    flex-direction: row;
    justify-content: space-between;
  }

  .milestones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .customizer-calculator-grid {
    grid-template-columns: 1fr;
  }

  .milestones-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== Nest Balance Dropdown and Collapsed Mode ===== */
.main-header .wallet-pill,
.detail-header .wallet-pill,
.fv-wallet {
  position: relative !important;
}

.main-header .wallet-pill .wallet-info,
.detail-header .wallet-pill .wallet-info,
.fv-header .fv-wallet-info {
  display: none !important;
}

.wallet-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 0 !important;
  width: 240px !important;
  padding: 1.25rem !important;
  border-radius: 20px !important;
  z-index: 9999 !important;
  background: #FCFAF5 !important;
  border: 1px solid rgba(169, 124, 55, 0.18) !important;
  box-shadow:
    0 15px 30px rgba(30, 26, 21, 0.12) !important,
    0 1px 3px rgba(30, 26, 21, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  pointer-events: auto !important;
}

.wallet-dropdown.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.wallet-dropdown-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  text-align: left !important;
}

.wallet-dropdown-label {
  font-family: var(--font-sans) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
}

.wallet-dropdown-amount {
  font-family: var(--font-sans) !important;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  color: var(--text-dark) !important;
}

.btn-wallet-redirect {
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.65rem 1.2rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: all 0.3s var(--ease-spring) !important;
  text-decoration: none !important;
  background: var(--accent-gold) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--accent-gold) !important;
  box-shadow: 0 4px 12px rgba(169, 124, 55, 0.2) !important;
}

.btn-wallet-redirect:hover {
  transform: translateY(-1px) !important;
  background: #B6863D !important;
  border-color: #B6863D !important;
  box-shadow: 0 6px 16px rgba(169, 124, 55, 0.3) !important;
}

/* ===== ALL DESTINATIONS VIEW ===== */
.all-destinations-view {
  background: linear-gradient(135deg, #FEF8F0 0%, #F8F4EE 100%);
  min-height: 100vh;
  box-sizing: border-box;
  padding-bottom: 5rem;
}

.destinations-header-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
  padding: 1.5rem 4.5rem 0;
  transition: padding 0.3s ease;
}

.destinations-header {
  width: 100%;
  max-width: 1560px;
  height: 4.8rem;
  margin: 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
  box-shadow:
    0 20px 45px rgba(30, 26, 21, 0.04),
    inset 0 1px 3px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.destinations-header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 0 2.5rem;
}

.btn-destinations-back {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-destinations-back:hover {
  color: var(--accent-gold);
  transform: translateX(-4px);
}

.btn-destinations-back i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-destinations-back:hover i {
  transform: scale(1.1);
}

.destinations-content-container {
  max-width: 1560px;
  margin: 3.5rem auto 0;
  padding: 0 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

/* Search Hero Layout */
.destinations-search-hero {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}

.search-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.destinations-overtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.destinations-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
}

.destinations-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 2rem 0;
}

/* Real-time Search Box */
.destinations-search-box {
  display: flex;
  align-items: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  gap: 0.9rem;
  box-shadow:
    0 10px 30px rgba(30, 26, 21, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 720px;
}

.destinations-search-box input {
  flex-grow: 1;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
}

.destinations-search-box input::placeholder {
  color: var(--text-light);
}

.destinations-search-box .search-icon {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
}

.btn-clear-search {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-clear-search:hover {
  color: var(--text-dark);
}

.destinations-search-box:focus-within {
  border-color: rgba(169, 124, 55, 0.45);
  background: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 12px 35px rgba(169, 124, 55, 0.06),
    inset 0 1px 3px rgba(255, 255, 255, 0.9);
}

/* Matchmaker Widget */
.matchmaker-widget {
  width: 100%;
  padding: 1.8rem 2.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
  display: grid;
  grid-template-columns: 1.2fr 2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow:
    0 25px 50px rgba(30, 26, 21, 0.03),
    inset 0 1px 3px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.matchmaker-widget:hover {
  border-color: rgba(169, 124, 55, 0.25);
  box-shadow:
    0 30px 60px rgba(169, 124, 55, 0.04),
    inset 0 1px 3px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.15);
}

@keyframes mm-sparkle-pulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.95;
  }

  50% {
    transform: scale(1.15) rotate(15deg);
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(169, 124, 55, 0.25));
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.95;
  }
}

.matchmaker-icon i {
  animation: mm-sparkle-pulse 3s infinite ease-in-out;
}

.matchmaker-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.matchmaker-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.matchmaker-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(169, 124, 55, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.matchmaker-header h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin: 0;
}

.matchmaker-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.matchmaker-questions {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  justify-content: flex-start;
  align-items: center;
}

.matchmaker-q {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.matchmaker-q label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.matchmaker-options {
  display: flex;
  gap: 8px;
}

.mm-opt {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--text-muted);
  box-shadow: 0 2px 5px rgba(30, 26, 21, 0.02);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mm-opt i {
  width: 14px;
  height: 14px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.mm-opt:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(169, 124, 55, 0.35);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.mm-opt:hover i {
  color: var(--accent-gold);
}

.mm-opt.active {
  background: linear-gradient(135deg, #B98A45 0%, #A37533 100%);
  border-color: #A37533;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(169, 124, 55, 0.25);
}

.mm-opt.active i {
  color: #FFFFFF;
}

.matchmaker-result {
  border-top: none;
  border-left: 1px dashed rgba(169, 124, 55, 0.18);
  padding-top: 0;
  padding-left: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .matchmaker-widget {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.8rem;
  }

  .matchmaker-questions {
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
    align-items: stretch;
  }

  .matchmaker-q {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .matchmaker-result {
    border-left: none;
    border-top: 1px dashed rgba(169, 124, 55, 0.18);
    padding-left: 0;
    padding-top: 1rem;
    width: 100%;
    align-items: center;
  }
}

/* Destinations Grid Layout */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.dest-card {
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  cursor: pointer;
  box-shadow:
    0 15px 35px rgba(30, 26, 21, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(169, 124, 55, 0.45);
  background: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 30px 60px rgba(169, 124, 55, 0.08),
    inset 0 1px 3px rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(255, 255, 255, 0.1);
}

.dest-card-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-card:hover .dest-card-image {
  transform: scale(1.04);
}

.dest-card-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 10px rgba(30, 26, 21, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  z-index: 5;
}

.dest-card:hover .dest-card-tag {
  background: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
}

.dest-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.25rem;
}

.dest-card-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dest-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.dest-card:hover .dest-card-title {
  color: var(--accent-gold);
}

.dest-card-country {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.dest-card-story {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  flex-grow: 1;
}

.dest-card-meta {
  display: flex;
  gap: 1.8rem;
  border-top: 1px dashed rgba(169, 124, 55, 0.18);
  border-bottom: 1px dashed rgba(169, 124, 55, 0.18);
  padding: 1rem 0;
  transition: border-color 0.3s ease;
}

.dest-card:hover .dest-card-meta {
  border-top-style: solid;
  border-bottom-style: solid;
  border-color: rgba(169, 124, 55, 0.35);
}

.dest-meta-item {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.dest-meta-item i {
  color: var(--accent-gold);
  transition: transform 0.4s ease;
}

.dest-card:hover .dest-meta-item i {
  transform: scale(1.15);
}

.btn-dest-explore {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(169, 124, 55, 0.35);
  color: var(--accent-gold);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-card:hover .btn-dest-explore {
  background: linear-gradient(135deg, #B98A45 0%, #A37533 100%);
  border-color: #A37533;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(169, 124, 55, 0.2);
}

/* Responsive Grid and Spacing */
@media (max-width: 1200px) {
  .destinations-header-wrapper {
    padding: 1.5rem 3rem 0;
  }

  .destinations-content-container {
    padding: 0 3rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .destinations-search-hero {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .destinations-search-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .destinations-header-wrapper {
    padding: 1rem 1.5rem 0;
  }

  .destinations-header {
    height: 4.2rem;
  }

  .destinations-content-container {
    padding: 0 1.5rem;
    gap: 3rem;
    margin-top: 2rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .destinations-header-wrapper {
    padding: 0.5rem 0.6rem 0 !important;
    width: 98% !important;
  }

  .destinations-content-container {
    padding: 0 1rem !important;
    gap: 2.2rem !important;
    margin-top: 1.5rem !important;
  }

  /* Mobile Matchmaker Widget Centering & Full Width */
  .matchmaker-widget {
    width: 100% !important;
    padding: 1.5rem 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    box-sizing: border-box !important;
    border-radius: 20px !important;
  }

  .matchmaker-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .matchmaker-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .matchmaker-desc {
    text-align: center !important;
    margin: 0 auto !important;
    font-size: 0.85rem !important;
  }

  .matchmaker-questions {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
    width: 100% !important;
  }

  .matchmaker-q {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.6rem !important;
    width: 100% !important;
  }

  .matchmaker-q label {
    text-align: center !important;
  }

  .matchmaker-options {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .matchmaker-result {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    border-left: none !important;
    border-top: 1px dashed rgba(169, 124, 55, 0.18) !important;
    padding-left: 0 !important;
    padding-top: 1rem !important;
  }
}

/* Portal Navigation Floating Cards */
.gs-portal-nav-btn {
  display: none !important;
}

.gs-portal-nav-btn--prev {
  left: 3%;
}

.gs-portal-nav-btn--next {
  right: 3%;
}

/* Hover effects */
.gs-portal-nav-btn--prev:hover {
  transform: translateY(-50%) translateX(-5px);
}

.gs-portal-nav-btn--next:hover {
  transform: translateY(-50%) translateX(5px);
}

.gs-portal-nav-card-inner {
  position: relative;
  width: 250px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-portal-nav-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(0.85);
  transition: filter 0.3s ease, scale 0.3s ease;
}

.gs-portal-nav-btn:hover .gs-portal-nav-card-bg {
  filter: brightness(0.85) saturate(1.1);
  scale: 1.08;
}

.gs-portal-nav-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 12px 18px;
  width: 100%;
  height: 100%;
}

.gs-portal-nav-card-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-grow: 1;
}

.gs-portal-nav-btn--next .gs-portal-nav-card-info {
  text-align: right;
}

.gs-portal-nav-card-dir {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.gs-portal-nav-card-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-transform: uppercase;
}

.gs-portal-nav-card-content svg {
  color: #fff;
  opacity: 0.8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.gs-portal-nav-btn--prev:hover .gs-portal-nav-card-content svg {
  transform: translateX(-3px);
}

.gs-portal-nav-btn--next:hover .gs-portal-nav-card-content svg {
  transform: translateX(3px);
}


/* ==========================================================================
   SECTION 01.5 — BOOK YOUR JOURNEY (Luxury Booking System)
   ========================================================================== */
.section-booking-journey {
  padding: 5rem 4% 4rem 4%;
  background: #FAF6EE;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.booking-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.booking-title-block {
  display: flex;
  flex-direction: column;
}

.booking-overtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.booking-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.booking-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(169, 124, 55, 0) 100%);
  border-radius: 2px;
}

.booking-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.booking-quick-actions {
  display: flex;
  gap: 0.8rem;
}

.booking-action-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(169, 124, 55, 0.2);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-action-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent-gold);
}

.booking-login-btn {
  background: var(--accent-gold-light);
  border-color: rgba(169, 124, 55, 0.3);
  color: var(--accent-gold);
}

.booking-login-btn:hover {
  background: rgba(169, 124, 55, 0.2);
}

/* Horizontal Tab Bar Styling */
.booking-tabs-container {
  border-bottom: 1px solid rgba(30, 26, 21, 0.08);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(169, 124, 55, 0.3) transparent;
}

.booking-tabs-container::-webkit-scrollbar {
  height: 4px;
}

.booking-tabs-container::-webkit-scrollbar-track {
  background: transparent;
}

.booking-tabs-container::-webkit-scrollbar-thumb {
  background-color: rgba(169, 124, 55, 0.2);
  border-radius: 2px;
}

.booking-tabs-container::-webkit-scrollbar-thumb:hover {
  background-color: rgba(169, 124, 55, 0.45);
}

.booking-tabs {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
}

.booking-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.booking-tab i {
  width: 1.1rem;
  height: 1.1rem;
}

.booking-tab:hover {
  color: var(--text-dark);
}

.booking-tab.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.badge-new {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent-gold);
  color: #fff;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 4px;
}

/* Interactive Ticket Booking Board */
.gs-ticket-board {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(30, 26, 21, 0.06);
  border: 1px solid rgba(30, 26, 21, 0.05);
  position: relative;
  z-index: 5;
}

/* Left ticket stub (Visual details) */
.ticket-stub-left {
  width: 240px;
  background: #0c1b33;
  color: #fff;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}

.airplane-window {
  width: 110px;
  height: 160px;
  border-radius: 55px;
  background: #142436;
  border: 6px solid #1c2e42;
  position: relative;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin-top: 1rem;
}

.window-view {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #2b5876, #4e4376, #ff7e5f, #feb47b);
  overflow: hidden;
}

.window-sky {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 120%, rgba(255, 235, 170, 0.3) 0%, rgba(255, 200, 100, 0) 70%);
}

.window-sun {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 240, 200, 0.8) 60%, rgba(255, 180, 80, 0) 100%);
  position: absolute;
  bottom: 25px;
  left: 20px;
}

.window-clouds {
  width: 150px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(6px);
  position: absolute;
  bottom: -15px;
  left: -20px;
  border-radius: 50%;
}

.window-inner-frame {
  position: absolute;
  inset: 2px;
  border-radius: 51px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.ticket-stub-left-text {
  margin-top: 1.5rem;
}

.stub-brand {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.65;
}

.stub-tagline {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.35;
  margin-top: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Rounded perforation notches */
.perforation-notch-top,
.perforation-notch-bottom {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FAF6EE;
  z-index: 10;
  right: -16px;
}

.perforation-notch-top {
  top: -16px;
  box-shadow: inset 0 -4px 8px rgba(30, 26, 21, 0.02);
}

.perforation-notch-bottom {
  bottom: -16px;
  box-shadow: inset 0 4px 8px rgba(30, 26, 21, 0.02);
}

/* Central form area */
.ticket-body {
  flex: 1;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ticket-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trip-type-selector {
  display: flex;
  gap: 0.4rem;
  background: rgba(30, 26, 21, 0.04);
  padding: 4px;
  border-radius: 30px;
}

.trip-type-btn {
  padding: 0.5rem 1.3rem;
  border-radius: 20px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.trip-type-btn.active {
  background: var(--accent-gold);
  color: #fff;
  box-shadow: 0 4px 12px rgba(169, 124, 55, 0.25);
}

.domestic-international-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-x {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-light);
}

/* Grid of Inputs */
.ticket-form-grid {
  display: grid;
  grid-template-columns: 1.8fr auto 1.8fr 1.2fr 1.2fr 1.4fr;
  gap: 0.75rem;
  align-items: center;
}

.form-input-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid rgba(30, 26, 21, 0.1);
  padding: 0.8rem 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  min-height: 76px;
  justify-content: center;
}

.form-input-col:hover {
  border-color: rgba(169, 124, 55, 0.45);
  box-shadow: 0 4px 15px rgba(30, 26, 21, 0.02);
}

.input-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.input-val-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.input-icon {
  color: var(--accent-gold);
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.input-text-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.input-field-city {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding: 0;
  min-width: 0;
}

.input-field-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  margin-top: 1px;
  min-width: 0;
}

.date-display,
.class-display {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sub-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Swap Cities button */
.btn-swap-cities {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(30, 26, 21, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(30, 26, 21, 0.05);
  z-index: 2;
  margin: 0 -12px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.btn-swap-cities i,
.btn-swap-cities svg {
  width: 1rem;
  height: 1rem;
}

.btn-swap-cities:hover {
  border-color: var(--accent-gold);
  background: var(--bg-cream);
  transform: rotate(180deg);
}

.dropdown-chevron {
  color: var(--text-light);
  width: 0.95rem;
  height: 0.95rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Extras Bottom Row */
.ticket-form-bottom-row {
  display: flex;
  gap: 2.5rem;
  border-top: 1px dashed rgba(30, 26, 21, 0.08);
  padding-top: 1.5rem;
  align-items: center;
}

.bottom-selector {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.selector-icon {
  color: var(--text-light);
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.selector-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.selector-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.selector-val-select select {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0;
}

.price-protection-widget {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(169, 124, 55, 0.05);
  border: 1px solid rgba(169, 124, 55, 0.12);
  padding: 6px 14px;
  border-radius: 12px;
}

.protection-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.protection-text strong {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-dark);
}

.protection-text span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.protection-toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  flex-shrink: 0;
}

.protection-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(30, 26, 21, 0.12);
  border-radius: 34px;
  transition: 0.3s ease;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s ease;
}

.protection-toggle-switch input:checked+.toggle-slider {
  background-color: var(--accent-gold);
}

.protection-toggle-switch input:checked+.toggle-slider:before {
  transform: translateX(18px);
}

/* Perforation Divider between receipt */
.perforation-divider {
  border-right: 1.5px dashed rgba(30, 26, 21, 0.12);
  width: 0;
  margin: 1.5rem 0;
  position: relative;
}

/* Right ticket stub (Receipt details) */
.ticket-stub-right {
  width: 260px;
  background: #FDFBF7;
  padding: 2.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.ticket-receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.receipt-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.receipt-plane-icon {
  color: var(--accent-gold);
  width: 1.2rem;
  height: 1.2rem;
}

.receipt-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.route-city-code {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.route-divider-plane {
  color: var(--text-light);
  opacity: 0.45;
  transform: rotate(90deg);
  width: 1.2rem;
  height: 1.2rem;
}

.receipt-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1rem;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.meta-val {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.receipt-barcode {
  margin-top: auto;
  border-top: 1px dashed rgba(30, 26, 21, 0.1);
  padding-top: 1.2rem;
}

.barcode-svg {
  width: 100%;
  height: auto;
}

/* Floating Search Button */
.booking-search-action {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  position: relative;
  z-index: 10;
}

.btn-search-flights {
  background: var(--accent-gold);
  border: none;
  padding: 1rem 3.5rem;
  border-radius: 30px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(169, 124, 55, 0.3);
}

.btn-search-flights i,
.btn-search-flights svg {
  width: 1rem;
  height: 1rem;
}

.btn-search-flights:hover {
  background: #C59B27;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(169, 124, 55, 0.45);
}

.btn-search-flights:active {
  transform: translateY(0);
}

/* Trust value props banner */
.booking-trust-banner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4.5rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(30, 26, 21, 0.06);
  padding-bottom: 3.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(169, 124, 55, 0.06);
  border: 1px solid rgba(169, 124, 55, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box i,
.trust-icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text strong {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 600;
}

.trust-text span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Promo Banner Cards styling */
.booking-promo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.promo-card {
  height: 135px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 26, 21, 0.1);
}

.promo-card-body {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-category {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.promo-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  opacity: 0.85;
}

.promo-arrow-btn {
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.promo-arrow-btn i,
.promo-arrow-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.promo-card:hover .promo-arrow-btn {
  background: #fff;
  color: var(--text-dark);
}

/* ==========================================================================
   BOOKING SYSTEM RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1250px) {
  .section-booking-journey {
    padding: 5rem 6% 4rem 6%;
  }

  .ticket-stub-left {
    display: none;
  }

  .perforation-divider {
    display: none;
  }

  .gs-ticket-board {
    flex-direction: column;
  }

  .ticket-stub-right {
    width: 100%;
    border-top: 1.5px dashed rgba(30, 26, 21, 0.12);
    padding: 2rem;
  }

  .ticket-form-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .btn-swap-cities {
    display: none;
  }

  .booking-promo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-trust-banner {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-booking-journey {
    padding: 4rem 5% 3rem 5%;
  }

  .booking-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .booking-title {
    font-size: 2.3rem;
  }

  .ticket-form-grid {
    grid-template-columns: 1fr;
  }

  .ticket-form-bottom-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .price-protection-widget {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .booking-promo-row {
    grid-template-columns: 1fr;
  }

  .booking-trust-banner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* ==========================================================================
   NEST dashboard SLIDING WALLET DRAWER, VIBES AND TIMELINE TIMELINE
   ========================================================================== */
.wallet-drawer-panel {
  position: fixed;
  top: -450px;
  left: 0;
  width: 100%;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(169, 124, 55, 0.25);
  box-shadow: 0 15px 40px rgba(30, 26, 21, 0.15);
  z-index: 999;
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.5rem 6% 3rem 6%;
}

.wallet-drawer-panel.open {
  top: 76px;
  /* Sits nicely below navbar */
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 21, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.wallet-drawer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.wallet-drawer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 40%;
}

.drawer-brand {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.drawer-tagline {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
}

.wallet-drawer-stats {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}

.drawer-stat-card {
  background: #fff;
  border: 1px solid rgba(169, 124, 55, 0.12);
  border-radius: 16px;
  padding: 1.25rem 1.8rem;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 4px 15px rgba(30, 26, 21, 0.02);
  transition: all 0.3s ease;
}

.drawer-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 124, 55, 0.08);
  border-color: rgba(169, 124, 55, 0.25);
}

.drawer-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(169, 124, 55, 0.08);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-stat-icon.ready {
  background: rgba(16, 172, 132, 0.08);
  color: #10AC84;
}

.drawer-stat-info {
  display: flex;
  flex-direction: column;
}

.drawer-stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.drawer-stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2px;
}

.drawer-actions-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 200px;
}

@media (max-width: 768px) {
  .wallet-drawer-panel {
    padding: 1.5rem 5% 1.8rem 5% !important;
    top: -550px;
  }

  .wallet-drawer-panel.open {
    top: 70px !important;
  }

  .wallet-drawer-container {
    display: grid !important;
    grid-template-columns: 32% 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 1rem !important;
    align-items: center !important;
  }

  .wallet-drawer-left {
    max-width: 100% !important;
    flex-shrink: 0 !important;
    padding-right: 0.5rem !important;
  }

  .drawer-brand {
    font-size: 0.58rem !important;
    letter-spacing: 0.1em !important;
  }

  .drawer-tagline {
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .wallet-drawer-stats {
    display: flex !important;
    gap: 0.8rem !important;
    overflow-x: auto !important;
    flex: 1 !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0.4rem 0.2rem !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .wallet-drawer-stats::-webkit-scrollbar {
    display: none !important;
  }

  .drawer-stat-card {
    flex: 0 0 170px !important;
    min-width: 170px !important;
    padding: 0.6rem 0.8rem !important;
    gap: 0.6rem !important;
    scroll-snap-align: start !important;
    border-radius: 12px !important;
  }

  .drawer-stat-icon {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0 !important;
  }

  .drawer-stat-icon i {
    width: 0.85rem !important;
    height: 0.85rem !important;
  }

  .drawer-stat-label {
    font-size: 0.58rem !important;
  }

  .drawer-stat-value {
    font-size: 1.05rem !important;
    margin-top: 1px !important;
  }

  .drawer-actions-col {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 0.8rem !important;
    min-width: auto !important;
    margin-top: 0.2rem !important;
  }

  .drawer-actions-col .btn-apply-settings {
    flex: 1 !important;
    margin: 0 !important;
    padding: 0.6rem 0.8rem !important;
    font-size: 0.72rem !important;
    justify-content: center !important;
  }

  .dashboard-header .header-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
  }

  .dashboard-header .btn-menu {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
  }

  .dashboard-header .btn-menu svg,
  .dashboard-header .btn-menu i {
    width: 12px !important;
    height: 12px !important;
  }

  /* Vibe filters chips wrap for mobile */
  .vibe-filters-container {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }

  .vibe-filter-btn {
    padding: 0.4rem 1rem !important;
    font-size: 0.76rem !important;
    gap: 0.4rem !important;
  }

  /* Packages trust banner stack for mobile */
  .pkg-trust-banner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    padding: 1.25rem 1.5rem !important;
  }

  .trust-banner-item {
    width: 100% !important;
  }
}

.vibe-filters-container {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.vibe-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  border: 1.5px solid rgba(169, 124, 55, 0.15);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.vibe-filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.vibe-filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(169, 124, 55, 0.25);
}

/* Winding Journey Path Timeline */
.milestones-map-section {
  position: relative;
  padding: 1.8rem 2.5rem !important;
}

.milestones-timeline-container {
  position: relative;
  margin-top: 1.5rem;
  padding: 1rem 0;
}

.milestones-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(169, 124, 55, 0.1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.milestones-timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-gold) 0%, #c59b27 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  height: 0%;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.timeline-item-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
  align-items: center;
}

.timeline-item-wrapper:last-child {
  margin-bottom: 1rem;
}

.timeline-node {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 4px solid rgba(169, 124, 55, 0.25);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 5;
  transition: all 0.4s ease;
}

.timeline-node.unlocked {
  background: var(--accent-gold);
  border-color: #FAF6EE;
  box-shadow: 0 0 15px rgba(169, 124, 55, 0.6);
}

.timeline-node.active-goal {
  border-color: #10AC84;
  background: #10AC84;
  box-shadow: 0 0 20px rgba(16, 172, 132, 0.8);
  width: 26px;
  height: 26px;
}

.timeline-card-col {
  width: 46%;
  position: relative;
}

.timeline-item-wrapper.left-side .timeline-card-col {
  margin-right: auto;
  display: flex;
  justify-content: flex-end;
}

.timeline-item-wrapper.right-side .timeline-card-col {
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
}

.timeline-connector {
  position: absolute;
  top: 50%;
  width: 4%;
  height: 2px;
  border-top: 2px dashed rgba(169, 124, 55, 0.25);
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.4s ease;
}

.timeline-node.dimmed {
  opacity: 0.15;
  filter: blur(1px) grayscale(100%);
}

.timeline-connector.dimmed {
  opacity: 0.1;
  border-top-color: rgba(169, 124, 55, 0.05);
}

.timeline-item-wrapper.left-side .timeline-connector {
  right: 46%;
  left: auto;
}

.timeline-item-wrapper.right-side .timeline-connector {
  left: 46%;
  right: auto;
}

.dash-milestone-card {
  width: 330px;
  height: 190px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 25px rgba(30, 26, 21, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dash-milestone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 26, 21, 0) 40%, rgba(30, 26, 21, 0.85) 100%);
  z-index: 1;
}

.dash-milestone-card.locked {
  filter: grayscale(85%) contrast(90%);
  opacity: 0.65;
}

.dash-milestone-card.locked:hover {
  filter: grayscale(30%) contrast(100%);
  opacity: 0.9;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 26, 21, 0.12);
}

.dash-milestone-card.unlocked:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 18px 35px rgba(169, 124, 55, 0.2);
}

.dash-milestone-card.active-target {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 25px rgba(169, 124, 55, 0.45);
}

.dash-milestone-card.dimmed {
  opacity: 0.2;
  transform: scale(0.94);
  filter: blur(2px) grayscale(100%);
  pointer-events: none;
}

.btn-modal-active-goal {
  background: #10AC84 !important;
  color: #fff !important;
}

.btn-modal-active-goal:hover {
  background: #0e9572 !important;
}

.btn-simulation-action.running {
  background: #EB5757 !important;
}

.btn-simulation-action.running:hover {
  background: #d44d4d !important;
}

/* Confetti overlay */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}

/* OVERRIDES FOR INTERACTIVE TIMELINE AND CUSTOMIZER CARDS */
.milestones-timeline-container .milestones-grid {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  gap: 3.5rem !important;
  padding: 2rem 0 !important;
  margin-top: 0.5rem !important;
  width: 100% !important;
}

.customizer-calculator-grid {
  align-items: start !important;
}

/* SECTION INTERACTIVES: GOLD BADGE, COUNTDOWN, 3D CARD FLIPS */
.gold-weight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 10px;
  background: rgba(185, 138, 69, 0.08);
  border: 1px solid rgba(185, 138, 69, 0.2);
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: 0.6rem;
  width: fit-content;
  letter-spacing: 0.02em;
  box-shadow: 0 0 10px rgba(185, 138, 69, 0.05);
  transition: all 0.3s ease;
}

.gold-weight-badge i,
.gold-weight-badge svg {
  width: 12px;
  height: 12px;
}

.pull-forward-timeline-box {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(16, 172, 132, 0.03);
  border: 1px dashed rgba(16, 172, 132, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pull-forward-header {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: #10AC84;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pull-forward-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pull-forward-date-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pull-forward-badge {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  background: #10AC84;
  color: #fff;
  padding: 3px 8px;
  border-radius: 99px;
  box-shadow: 0 3px 8px rgba(16, 172, 132, 0.2);
}

/* 3D Flip Transaction Ledger Items */
.ledger-card-wrapper {
  perspective: 1000px;
  width: 100%;
  height: 80px;
  margin-bottom: 1rem;
  cursor: pointer;
}

.ledger-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.ledger-card-wrapper.flipped .ledger-card-inner {
  transform: rotateY(180deg);
}

.ledger-card-front,
.ledger-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
}

.ledger-card-front {
  background: #fff;
  border: 1px solid rgba(30, 26, 21, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 15px rgba(30, 26, 21, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ledger-card-front:hover {
  border-color: rgba(169, 124, 55, 0.25);
  box-shadow: 0 6px 20px rgba(169, 124, 55, 0.05);
}

.ledger-card-back {
  background: linear-gradient(135deg, #FAF6EE 0%, #F3ECDC 100%);
  border: 1px solid rgba(169, 124, 55, 0.25);
  color: var(--text-dark);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.25rem;
  box-shadow: 0 4px 15px rgba(169, 124, 55, 0.08);
}

.receipt-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.receipt-details {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.receipt-id {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.65rem;
  opacity: 0.6;
}

/* ===== RESPONSIVE DRAWER PANELS, FLOATING CAPSULE & BACKDROP ===== */
.nest-drawer-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(250, 246, 238, 0.98);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: -10px 0 35px rgba(30, 26, 21, 0.12);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-left: 1px solid rgba(169, 124, 55, 0.15);
}

.nest-drawer-panel.open {
  right: 0;
}

.drawer-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(169, 124, 55, 0.12);
}

.drawer-header-row h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-close-drawer {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(30, 26, 21, 0.03);
  transition: all 0.3s ease;
}

.btn-close-drawer:hover {
  color: var(--text-dark);
  background: rgba(30, 26, 21, 0.08);
}

.drawer-body-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  box-sizing: border-box;
}

.nest-floating-capsule-container {
  position: fixed;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
  width: auto;
  max-width: 92%;
  pointer-events: auto;
}

.nest-floating-capsule {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.65rem 1.8rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow:
    0 15px 35px rgba(30, 26, 21, 0.1),
    0 1px 3px rgba(30, 26, 21, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.capsule-section {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.capsule-label {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.capsule-val {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.capsule-sub-badge {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.capsule-divider {
  width: 1px;
  height: 24px;
  background: rgba(169, 124, 55, 0.15);
}

.capsule-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.capsule-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(30, 26, 21, 0.08);
  background: #FFF;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.capsule-btn:hover {
  background: var(--text-dark);
  color: #FFF;
  border-color: var(--text-dark);
}

.capsule-btn.highlight {
  background: var(--accent-gold);
  color: #FFF;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(169, 124, 55, 0.2);
}

.capsule-btn.highlight:hover {
  background: #B6863D;
  border-color: #B6863D;
}

.capsule-btn.danger {
  background: rgba(235, 87, 87, 0.06);
  border-color: rgba(235, 87, 87, 0.15);
  color: #EB5757;
}

.capsule-btn.danger:hover {
  background: #EB5757;
  color: #FFF;
  border-color: #EB5757;
}

/* ===== INTERACTIVE GROWTH PROJECTION CHART HOVER POPOVER ===== */
.chart-hover-popover {
  position: absolute;
  top: 15px;
  left: 45px;
  width: 200px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(169, 124, 55, 0.25);
  box-shadow: 0 8px 25px rgba(30, 26, 21, 0.12);
  display: flex;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.25, 1, 0.5, 1), transform 0.22s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(6px);
  box-sizing: border-box;
}

.chart-hover-popover.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popover-stay-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(169, 124, 55, 0.15);
  flex-shrink: 0;
}

.popover-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}

.popover-date {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popover-amount {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 1px 0;
}

.popover-stay-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 120px;
}

/* ===== 2x2 DASHBOARD ALIGNMENT & INTERACTIVES ===== */
.nest-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.sidebar-card {
  box-sizing: border-box;
  margin-bottom: 0 !important;
}

/* Equal heights logic */
.nest-dashboard-layout {
  align-items: stretch !important;
}

/* Gold coin reservoir box */
.coin-reservoir-box {
  position: absolute;
  top: 1.25rem;
  right: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(185, 138, 69, 0.08);
  border: 1px solid rgba(185, 138, 69, 0.25);
  padding: 6px 12px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(185, 138, 69, 0.05);
  z-index: 10;
}

.coin-reservoir-box:hover {
  background: rgba(185, 138, 69, 0.15);
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 6px 16px rgba(185, 138, 69, 0.15);
}

.coin-reservoir-box i,
.coin-reservoir-box svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

.coin-reservoir-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Coin Shimmer pulse keys */
@keyframes coin-shimmer {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.18);
    filter: brightness(1.4) drop-shadow(0 0 10px rgba(185, 138, 69, 0.9));
  }

  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.coin-shimmer-active {
  animation: coin-shimmer 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Plan Comparison toggle settings */
.plan-comparison-toggle {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30, 26, 21, 0.03);
  border: 1px solid rgba(30, 26, 21, 0.06);
  padding: 0.5rem 0.75rem;
  border-radius: 14px;
}

.comparison-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.comparison-switch-group {
  display: flex;
  background: #FFF;
  border: 1px solid rgba(30, 26, 21, 0.08);
  padding: 2px;
  border-radius: 99px;
}

.comparison-switch-btn {
  border: none;
  background: transparent;
  padding: 5px 12px;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.comparison-switch-btn.active {
  background: var(--accent-gold);
  color: #FFF;
  box-shadow: 0 3px 8px rgba(185, 138, 69, 0.25);
}

/* ===== HOLIDAY PACKAGES VIEW PORTAL ===== */
.packages-view-container {
  min-height: 100vh;
  background: var(--bg-cream);
  position: relative;
  overflow: visible;
}

/* Header & Sidebar Side Padding Consistency */
.packages-header-wrapper {
  box-sizing: border-box;
  transition: padding 0.3s ease;
}

.packages-header {
  width: 100% !important;
  max-width: 1560px !important;
  margin: 0 auto !important;
}

.packages-header-container {
  width: 100%;
}

.packages-body-container {
  width: 100% !important;
  max-width: 1560px !important;
  margin: 0 auto !important;
  padding: 2.5rem 4.5rem 5rem !important;
  box-sizing: border-box !important;
}

/* Header Links Hover Override */
.packages-header-container .nav-links .nav-link,
.destinations-header-container .nav-links .nav-link {
  color: var(--text-muted) !important;
  position: relative !important;
}

.packages-header-container .nav-links .nav-link::after,
.destinations-header-container .nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.packages-header-container .nav-links .nav-link:hover::after,
.packages-header-container .nav-links .nav-link.active::after,
.destinations-header-container .nav-links .nav-link:hover::after,
.destinations-header-container .nav-links .nav-link.active::after {
  width: 100%;
}

.packages-header-container .nav-links .nav-link:hover,
.destinations-header-container .nav-links .nav-link:hover {
  color: var(--text-dark) !important;
}

.packages-header-container .nav-links .nav-link.active,
.destinations-header-container .nav-links .nav-link.active {
  color: var(--accent-gold) !important;
}

/* Back Button Hover */
.btn-packages-back:hover {
  background: rgba(30, 26, 21, 0.08) !important;
  color: var(--accent-gold) !important;
  transform: translateY(-1px);
}

.btn-packages-back:active {
  transform: translateY(0);
}

/* Wallet Pill Hover */
.packages-header-container .wallet-pill:hover {
  border-color: rgba(185, 138, 69, 0.45) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 6px 16px rgba(185, 138, 69, 0.1) !important;
  transform: translateY(-1px);
}

.packages-header-container .wallet-pill:active {
  transform: translateY(0);
}

/* Category Tab Carousel - Hide Native Scrollbar */
.packages-categories-carousel {
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE/Edge */
}

.packages-categories-carousel::-webkit-scrollbar {
  display: none !important;
  /* Chrome/Safari */
}

.cat-tab {
  transition: all 0.3s ease !important;
}

.cat-tab.active {
  background: var(--accent-gold) !important;
  color: #FFF !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 4px 12px rgba(185, 138, 69, 0.25) !important;
}

.cat-tab.active i,
.cat-tab.active svg {
  color: #FFF !important;
}

.cat-tab:hover {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  transform: translateY(-1px);
}

.cat-tab:active {
  transform: translateY(0);
}

/* Category Scrollbar Custom Widget Center styling */
.pkg-category-scrollbar-widget {
  margin: 0.75rem auto 0 !important;
  max-width: 480px !important;
}

/* Search Widget Hover Effects */
.btn-pkg-search:hover {
  background: #B98A45 !important;
  box-shadow: 0 6px 16px rgba(169, 124, 55, 0.35) !important;
  transform: translateY(-1px);
}

.btn-pkg-search:active {
  transform: translateY(0);
}

/* Package Card Premium Hovers */
.package-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.package-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(30, 26, 21, 0.08) !important;
}

.pkg-wishlist-btn:hover {
  background: #FFF !important;
  color: #EB5757 !important;
  transform: scale(1.1);
}

.btn-pkg-view-details:hover {
  background: var(--accent-gold) !important;
  color: #FFF !important;
}

/* Special Offers Promo Cards styling */
.pkg-offers-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem !important;
}

.pkg-offer-card {
  transition: transform 0.3s ease !important;
}

.pkg-offer-card:hover {
  transform: scale(1.02) !important;
}

.btn-grab-offer:hover {
  background: var(--text-dark) !important;
  color: #FFF !important;
}

/* Consultant Widget Hover */
.btn-plan-my-trip:hover {
  background: var(--accent-gold) !important;
  box-shadow: 0 6px 16px rgba(185, 138, 69, 0.3) !important;
  transform: translateY(-1px);
}

.btn-plan-my-trip:active {
  transform: translateY(0);
}

/* Filter Option Buttons Hovers */
.theme-option-btn {
  transition: all 0.3s ease !important;
}

.theme-option-btn:hover {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

.theme-option-btn.active {
  background: var(--accent-gold) !important;
  color: #FFF !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 3px 8px rgba(185, 138, 69, 0.2) !important;
}

.dur-option-btn {
  transition: all 0.3s ease !important;
}

.dur-option-btn:hover {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

.dur-option-btn.active {
  background: var(--accent-gold) !important;
  color: #FFF !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 3px 8px rgba(185, 138, 69, 0.2) !important;
}

/* Svg map node pulsing animations */
@keyframes map-node-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.map-node:hover circle:first-child {
  animation: map-node-pulse 1s infinite alternate;
  fill: rgba(185, 138, 69, 0.4);
}

/* Responsive Styles & Grid Adjustments */
@media (max-width: 1200px) {
  .packages-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 1024px) {

  .packages-body-container {
    padding: 2rem 2.5rem 4rem !important;
  }

  .packages-row-1,
  .packages-row-3,
  .packages-row-4 {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .pkg-offers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .packages-search-widget {
    position: static !important;
    margin-top: 2rem !important;
    flex-direction: column !important;
    border-radius: 18px !important;
    padding: 1.25rem !important;
    gap: 1rem !important;
    box-shadow: 0 8px 24px rgba(30, 26, 21, 0.06) !important;
    width: 100% !important;
  }

  .packages-search-widget .search-field {
    width: 100% !important;
    padding: 0 !important;
  }

  .packages-search-widget .search-divider {
    display: none !important;
  }

  .packages-search-widget .btn-pkg-search {
    width: 100% !important;
    padding: 0.75rem !important;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {

  .packages-header {
    height: auto !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 24px !important;
  }

  .packages-header-container {
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    justify-content: space-between !important;
  }

  .packages-header-container .nav-links,
  .destinations-header-container .nav-links {
    order: 3 !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 1.2rem !important;
    margin-top: 0.25rem;
  }

  .packages-hero-section {
    padding: 2.5rem 1.25rem 3.5rem !important;
    min-height: auto !important;
  }

  .packages-hero-content {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 auto !important;
  }

  .hero-trust-badges {
    justify-content: center !important;
  }

  .packages-categories-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.85rem !important;
  }

  .packages-categories-carousel {
    width: 100% !important;
  }

  .categories-carousel-track {
    justify-content: center !important;
    gap: 1.2rem !important;
    margin-top: 0.25rem;
  }

  .packages-body-container {
    padding: 1.5rem 1.5rem 4rem !important;
  }

  .packages-row-3,
  .packages-row-4 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .pkg-left-col,
  .pkg-right-col {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .packages-cards-grid,
  .pkg-offers-grid {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .pkg-sidebar-card.refine-search-card,
  .packages-cards-grid .package-card,
  .pkg-offers-grid .pkg-offer-card,
  .pkg-sidebar-card.expert-consult-card {
    width: 90% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 600px) {
  .pkg-offers-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .packages-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .packages-header-container .nav-links,
  .destinations-header-container .nav-links {
    gap: 0.75rem !important;
  }

  .packages-header-container .nav-links .nav-link,
  .destinations-header-container .nav-links .nav-link {
    font-size: 0.65rem !important;
  }
}

/* CONCIERGE FILTERS UI STYLING */
.filter-pill-btn {
  border: 1px solid rgba(30, 26, 21, 0.08) !important;
  background: #FFF !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.filter-pill-btn:hover {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

.filter-pill-btn.active {
  background: var(--accent-gold) !important;
  color: #FFF !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 4px 10px rgba(185, 138, 69, 0.2) !important;
}

/* Category Tabs Underline style */
.packages-categories-row .cat-tab {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--text-muted) !important;
  padding: 16px 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  position: relative !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
}

.packages-categories-row .cat-tab.active {
  color: var(--accent-gold) !important;
}

.packages-categories-row .cat-tab::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 2.5px !important;
  background-color: var(--accent-gold) !important;
  transition: width 0.3s ease !important;
}

.packages-categories-row .cat-tab.active::after {
  width: 100% !important;
}

.packages-categories-row .cat-tab:hover {
  color: var(--text-dark) !important;
}

/* Apple Style Toggle Switch */
.nest-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.nest-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.nest-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 26, 21, 0.12);
  transition: .4s;
  border-radius: 34px;
}

.nest-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.nest-switch input:checked+.nest-slider {
  background-color: var(--accent-gold);
}

.nest-switch input:checked+.nest-slider:before {
  transform: translateX(16px);
}

/* Blue Submit Search Button Override */
.btn-pkg-search-submit {
  background: linear-gradient(135deg, #0077FF, #0055D4) !important;
  color: #FFF !important;
  box-shadow: 0 4px 14px rgba(0, 119, 255, 0.3) !important;
  border-radius: 99px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.65rem 2.2rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.btn-pkg-search-submit:hover {
  background: linear-gradient(135deg, #0088FF, #0066FF) !important;
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.45) !important;
  transform: translateY(-1px);
}

.btn-pkg-search-submit:active {
  transform: translateY(0);
}

/* Pill book package tag */
.btn-pkg-book-pill {
  transition: all 0.3s ease !important;
}

.btn-pkg-book-pill:hover {
  background: #10AC84 !important;
  color: #FFF !important;
  box-shadow: 0 3px 8px rgba(16, 172, 132, 0.2) !important;
}

/* responsive stacking */
@media (max-width: 1024px) {
  .packages-row-3 {
    grid-template-columns: 1fr !important;
  }
}

/* CALENDAR DATE PICKER STYLES */
.calendar-day-btn {
  border: none !important;
  background: transparent !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.calendar-day-btn:hover {
  background: rgba(169, 124, 55, 0.1) !important;
  color: var(--accent-gold) !important;
}

.calendar-day-btn.selected {
  background: var(--accent-gold) !important;
  color: #FFF !important;
  border-radius: 50% !important;
}

.calendar-day-btn.in-range {
  background: rgba(169, 124, 55, 0.12) !important;
  border-radius: 0 !important;
  color: var(--accent-gold) !important;
}

.calendar-day-btn.empty {
  cursor: default !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* PACKAGE DETAILS MODAL STYLES */
@keyframes pkgModalFadeScale {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#btn-pkg-modal-close:hover {
  background: var(--text-dark) !important;
  color: #FFF !important;
  transform: rotate(90deg);
}

#btn-pkg-modal-book:hover {
  background: var(--text-dark) !important;
  box-shadow: 0 6px 15px rgba(30, 26, 21, 0.25) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   MOBILE-FIRST OPTIMIZATIONS (MakeMyTrip Inspired Responsive Flow)
   ========================================================================== */
@media (max-width: 768px) {
  /* Center all section headers and their gold underlines on mobile */
  .gs-section-header {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .gs-section-title {
    text-align: center !important;
    display: inline-block !important;
    width: 100% !important;
  }

  .gs-section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Global Container Mobile Override */
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Floating Trust Bar Mobile Layout */
  .trust-bar-container {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    padding: 0 1.25rem !important;
  }

  .trust-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
    padding: 1.5rem 1.25rem !important;
    border-radius: 32px !important;
    background: rgba(255, 255, 255, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 15px 35px rgba(30, 26, 21, 0.03) !important;
  }

  .trust-capsule {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 1rem 1.25rem !important;
    border-radius: 20px !important;
    background: #FFFFFF !important;
    border: 1px solid rgba(185, 138, 69, 0.12) !important;
    gap: 1.1rem !important;
  }

  .trust-capsule i {
    width: 1.4rem !important;
    height: 1.4rem !important;
  }

  .trust-text {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .trust-title {
    font-size: 0.95rem !important;
  }

  .trust-desc {
    font-size: 0.76rem !important;
  }

  /* Footer Mobile Layout */
  .main-footer {
    padding: 2.5rem 0 !important;
  }

  .footer-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.5rem !important;
    align-items: center !important;
  }

  .footer-content p {
    margin: 0 !important;
    line-height: 1.5 !important;
    font-size: 0.85rem !important;
  }

  .footer-links {
    justify-content: center !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
  }

  .footer-links a {
    font-size: 0.85rem !important;
  }

  body,
  html {
    overflow-x: hidden !important;
  }

  /* Compact responsive glass header */
  .header-wrapper,
  .detail-header-wrapper {
    top: 0.5rem !important;
    width: 98% !important;
    padding: 0 !important;
  }

  .main-header,
  .packages-header,
  .destinations-header,
  .detail-header {
    height: 3.6rem !important;
    border-radius: 99px !important;
    padding: 0 0.6rem !important;
    width: 100% !important;
  }

  .header-container,
  .packages-header-container,
  .destinations-header-container,
  .detail-header-container {
    position: relative !important;
    display: block !important;
    height: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .brand-group {
    position: absolute !important;
    left: 44% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .brand-logo {
    width: 28px !important;
    height: 28px !important;
  }

  .brand-name {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
  }

  .destinations-header .brand-text,
  .packages-header .brand-text {
    display: none !important;
  }

  .destinations-header .brand-group,
  .packages-header .brand-group {
    left: 41% !important;
    transform: translate(-50%, -50%) !important;
  }

  .detail-header .brand-text {
    display: none !important;
  }
  .detail-header .brand-group {
    left: 50% !important;
    top: 0 !important;
    height: 100% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .btn-detail-back {
    position: absolute !important;
    left: 0.6rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    z-index: 10 !important;
  }

  .btn-detail-back span {
    display: none !important;
  }

  .btn-detail-back i {
    width: 15px !important;
    height: 15px !important;
    margin: 0 !important;
  }

  .btn-detail-share,
  .btn-detail-heart {
    display: none !important;
  }

  .detail-header .header-actions {
    display: block !important;
    position: static !important;
  }

  .detail-header .wallet-pill {
    display: flex !important;
    position: absolute !important;
    right: 0.6rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(169, 124, 55, 0.15) !important;
    box-shadow: 0 4px 12px rgba(169, 124, 55, 0.05) !important;
    z-index: 10 !important;
  }

  .detail-header .wallet-pill .wallet-icon {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .detail-header .wallet-pill .wallet-icon svg {
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
  }

  .detail-header .wallet-pill .wallet-arrow {
    display: none !important;
  }

  .btn-destinations-back,
  .btn-packages-back {
    position: absolute !important;
    left: 0.6rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(30, 26, 21, 0.05) !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 99px !important;
    font-family: var(--font-sans) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    cursor: pointer !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  }

  .nav-links {
    display: none !important;
  }

  .header-actions {
    display: block !important;
    position: static !important;
  }

  .main-header .wallet-pill,
  .packages-header .wallet-pill,
  .destinations-header .wallet-pill {
    position: absolute !important;
    right: 3.2rem !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 3px 6px !important;
    gap: 0.25rem !important;
    margin: 0 !important;
  }

  .wallet-pill .wallet-icon svg {
    width: 10px !important;
    height: 10px !important;
  }

  .wallet-pill .wallet-arrow {
    width: 8px !important;
    height: 8px !important;
  }

  .main-header .btn-menu,
  .packages-header .btn-menu,
  .destinations-header .btn-menu {
    position: absolute !important;
    right: 0.6rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn-menu svg {
    width: 12px !important;
    height: 12px !important;
  }

  /* Staggered Vertical Category Pills inside Discover Experiences */
  .category-pills {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 580px !important;
    margin: 0 auto !important;
    gap: 0.6rem !important;
  }

  .category-pill {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    padding: 0.65rem 0.6rem !important;
    font-size: 0.85rem !important;
    gap: 0.4rem !important;
  }

  /* experiences layout alignments */
  .experiences-controls {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
  }

  /* Discover Experiences Mobile Full Width & Center Alignment */
  .section-experiences {
    padding: 3rem 0 !important;
  }

  .section-experiences .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .section-experiences .gs-section-header {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  .section-experiences .experiences-subtitle-wrapper {
    padding-left: 0 !important;
    text-align: center !important;
    margin-top: -0.5rem !important;
  }

  .experiences-explorer-layout {
    width: 100% !important;
    gap: 1.5rem !important;
  }

  .explorer-sidebar .sidebar-header {
    text-align: center !important;
  }

  .btn-reset-filters {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }

  .explorer-grid-container {
    width: 100% !important;
  }

  .explorer-grid-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
    text-align: center !important;
  }

  .explorer-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 1.5rem !important;
  }

  .story-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: auto !important;
  }

  .story-card-image-wrapper {
    width: 100% !important;
    height: 220px !important;
  }

  .story-card-content {
    align-items: stretch !important;
    text-align: left !important;
    padding: 1.25rem 1rem !important;
  }

  .story-card-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 0.6rem !important;
  }

  .story-card-title {
    text-align: left !important;
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }

  .story-card-desc {
    text-align: left !important;
    width: 100% !important;
    margin-bottom: 1.2rem !important;
  }

  .story-card-footer {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: none !important;
    margin-top: 0.75rem !important;
    padding-top: 0 !important;
  }

  .story-card-meta {
    justify-content: flex-start !important;
    gap: 0.5rem !important;
  }

  .story-explore-btn {
    margin: 0 !important;
  }

  /* Staggered Vertical Hero layout ordering */
  .gs-hero {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 100vh !important;
    padding-bottom: 0 !important;
    overflow-y: visible !important;
  }

  /* Immersive Portal Mode Mobile Heights & Overflows to fix black blank space */
  .gs-hero.gs-portal-mode {
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
  }

  .gs-hero.gs-portal-mode .gs-dest-content {
    position: absolute !important;
    top: auto !important;
    bottom: 25px !important;
    left: 20px !important;
    right: 20px !important;
    width: calc(100% - 40px) !important;
    max-width: none !important;
    transform: none !important;
    z-index: 50 !important;
  }

  .gs-hero.gs-portal-mode .gs-dest-content-inner {
    gap: 12px !important;
  }

  .gs-hero.gs-portal-mode .gs-dest-desc-label {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
  }

  .gs-hero.gs-portal-mode .gs-dest-stats-row {
    margin: 0.25rem 0 !important;
    gap: 1.25rem !important;
  }

  .gs-hero.gs-portal-mode .gs-dest-stat-pill strong {
    font-size: 1.1rem !important;
  }

  .gs-hero.gs-portal-mode .gs-dest-stat-pill span {
    font-size: 0.65rem !important;
  }

  /* Small Floating Portal Navigation Cards on Mobile */
  .gs-portal-nav-btn {
    top: 36% !important;
  }

  .gs-portal-nav-btn--prev {
    left: 4% !important;
  }

  .gs-portal-nav-btn--next {
    right: 4% !important;
  }

  .gs-portal-nav-card-inner {
    width: 125px !important;
    height: 75px !important;
    border-radius: 12px !important;
  }

  .gs-portal-nav-card-content {
    padding: 8px 10px !important;
    gap: 6px !important;
  }

  .gs-portal-nav-card-content svg {
    width: 16px !important;
    height: 16px !important;
  }

  .gs-portal-nav-card-dir {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
  }

  .gs-portal-nav-card-name {
    font-size: 11px !important;
    margin-top: 1px !important;
  }

  /* Position card stage (carousel) first under the fixed navbar */
  .gs-card-stage {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    height: 380px !important;
    margin-top: 6.5rem !important;
    /* leaves space for fixed header */
    margin-bottom: 1.5rem !important;
    width: 100% !important;
    order: 1 !important;
    overflow: visible !important;
  }

  .gs-card-track {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Move text and buttons (editorial) below the carousel, aligned left to prevent human overlay */
  .gs-editorial {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    margin: 7.5rem 0 2.5rem 12px !important;
    max-width: 90% !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    order: 2 !important;
    z-index: 30 !important;
  }

  .gs-headline {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin-bottom: 1.2rem !important;
    color: #ffffff !important;
    text-align: left !important;
  }

  .gs-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  /* Reduce traveler height and raise its bottom position slightly on mobile to avoid overlapping stats bar */
  .gs-traveler {
    height: 22vh !important;
    bottom: 90px !important;
  }

  /* Stats bar positioning at the bottom */
  .gs-bottom {
    position: relative !important;
    margin-top: auto !important;
    width: 100% !important;
    order: 3 !important;
    box-sizing: border-box !important;
  }

  /* Responsive Dashboard Header wrapper and styling overrides */
  .dashboard-header-wrapper {
    padding: 0.5rem 1rem 0 !important;
  }

  .dashboard-header {
    height: 3.6rem !important;
    border-radius: 99px !important;
  }

  .dashboard-header-container {
    padding: 0 0.6rem !important;
  }

  .btn-dashboard-back {
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  }

  .btn-dashboard-back span {
    display: none !important;
  }

  .btn-dashboard-back i {
    margin: 0 !important;
  }

  .dashboard-header .brand-text {
    display: none !important;
  }

  .dashboard-header .brand-group {
    margin: 0 !important;
  }

  .dashboard-header .wallet-pill {
    padding: 4px 8px !important;
    gap: 0.25rem !important;
  }

  .dashboard-header .wallet-pill .wallet-info {
    display: none !important;
  }

  .dashboard-header .wallet-pill .wallet-arrow {
    display: none !important;
  }

  /* Dashboard content container and layout spacing */
  .dashboard-content-container.nest-premium-dashboard {
    padding: 0 1rem !important;
    margin-top: 1.5rem !important;
  }

  .dashboard-card-section {
    padding: 1.5rem 1.25rem !important;
    border-radius: 24px !important;
  }

  /* Progress to Japan layout fixes for mobile */
  .nest-progress-card {
    flex-direction: column !important;
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .nest-progress-left {
    width: 100% !important;
    max-width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(169, 124, 55, 0.08) !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
  }

  .nest-progress-right {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 1.25rem 0.5rem !important;
    overflow-x: auto !important;
    box-sizing: border-box !important;
  }

  .nest-progress-right > div {
    min-width: 320px !important;
  }

  .nest-progress-right .ms-node {
    width: 44px !important;
  }

  .nest-progress-right .ms-node > div[style*="width:34px"] {
    width: 20px !important;
    height: 20px !important;
    border-width: 2px !important;
  }

  .nest-progress-right .ms-node > div[style*="width:34px"] i {
    width: 8px !important;
    height: 8px !important;
  }

  .nest-progress-right .ms-node span[style*="font-size:0.62rem"] {
    font-size: 0.5rem !important;
  }

  .nest-progress-right .ms-node span[style*="font-size:0.6rem"] {
    font-size: 0.45rem !important;
  }

  .nest-progress-right div[style*="position:absolute;top:calc(0.6rem + 17px)"] {
    top: calc(0.6rem + 10px) !important;
  }

  /* Customizer tweaks on mobile */
  .autopilot-customizer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .section-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }

  .customizer-calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .calc-inputs {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .calc-projection-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .slider-header {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
  }

  .dur-pill {
    padding: 6px 12px !important;
    font-size: 0.72rem !important;
  }

  .plan-comparison-toggle {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0.6rem !important;
  }

  .comparison-switch-group {
    flex-wrap: wrap !important;
    gap: 2px !important;
    justify-content: center !important;
  }

  .comparison-switch-btn {
    padding: 5px 8px !important;
    font-size: 0.62rem !important;
  }
}

/* ==========================================================================
   WISHLIST BUTTON ANIMATIONS & GLOWS
   ========================================================================== */
.btn-wishlist-heart {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-wishlist-heart:hover {
  transform: scale(1.15) !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 15px rgba(169, 124, 55, 0.2) !important;
}

.btn-wishlist-heart:active {
  transform: scale(0.9) !important;
}

.btn-wishlist-heart i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease !important;
}

.btn-wishlist-heart:hover i {
  transform: scale(1.1) rotate(6deg) !important;
}

/* ==========================================================================
   INTERACTIVE TRAVEL MILESTONES DROPDOWN & SPOTLIGHT STYLING
   ========================================================================== */

/* Custom Milestones Dropdown wrapper styling */
.milestones-dropdown-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Custom Select Dropdown Container */
.milestone-custom-select {
  position: relative;
  width: 100%;
  user-select: none;
  z-index: 100;
}

/* Dropdown Trigger Button */
.select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.4rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(185, 138, 69, 0.22);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30, 26, 21, 0.04);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.select-trigger:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 36px rgba(185, 138, 69, 0.12);
  transform: translateY(-2px);
}

.select-trigger.active {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(185, 138, 69, 0.15);
}

.trigger-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trigger-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(185, 138, 69, 0.1);
  border: 1px solid rgba(185, 138, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.trigger-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.trigger-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trigger-goal {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.trigger-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trigger-status-badge {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.trigger-status-badge.badge-unlocked {
  background: rgba(16, 172, 132, 0.12);
  color: #10AC84;
}

.trigger-status-badge.badge-locked {
  background: rgba(185, 138, 69, 0.1);
  color: var(--accent-gold);
}

.chevron-icon {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.select-trigger.active .chevron-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

/* Dropdown Options List Panel */
.select-options-list {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(185, 138, 69, 0.15);
  box-shadow: 0 15px 45px rgba(30, 26, 21, 0.15);
  z-index: 1000;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.select-options-list.show {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  padding: 0.6rem;
}

/* Custom Scrollbar for Options List */
.select-options-list::-webkit-scrollbar {
  width: 6px;
}

.select-options-list::-webkit-scrollbar-track {
  background: transparent;
}

.select-options-list::-webkit-scrollbar-thumb {
  background: rgba(185, 138, 69, 0.2);
  border-radius: 99px;
}

/* Inside the options list, the grid changes to simple list layout */
.select-options-list .milestones-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Option Item Wrapper */
.milestone-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  border: 1px solid transparent;
}

.milestone-option-item:hover {
  background: rgba(185, 138, 69, 0.06);
  border-color: rgba(185, 138, 69, 0.12);
  transform: translateX(4px);
}

.milestone-option-item.selected {
  background: rgba(185, 138, 69, 0.1);
  border-color: rgba(185, 138, 69, 0.25);
}

.option-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.option-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.option-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.option-name {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
}

.option-goal {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.option-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.option-badge {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.option-badge.unlocked {
  background: rgba(16, 172, 132, 0.08);
  color: #10AC84;
}

.option-badge.locked {
  background: rgba(30, 26, 21, 0.05);
  color: var(--text-muted);
}

.option-status-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-status-icon.unlocked {
  background: #10AC84;
  color: #FFFFFF;
}

.option-status-icon.locked {
  background: rgba(30, 26, 21, 0.05);
  color: var(--text-muted);
}

.option-status-icon i {
  width: 10px;
  height: 10px;
}

/* Spotlight Milestone Card Styling */
.milestone-spotlight-card {
  border-radius: 28px !important;
  padding: 0 !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(35px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(35px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 15px 35px rgba(30, 26, 21, 0.04) !important;
  min-height: 280px;
}

.spotlight-content-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 280px;
}

@media (max-width: 992px) {
  .spotlight-content-grid {
    grid-template-columns: 1fr;
  }
}

.spotlight-image-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 200px;
}

.spotlight-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 26, 21, 0.15) 0%, rgba(30, 26, 21, 0.5) 100%);
  z-index: 1;
}

.spotlight-image-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 99px;
  color: white;
  background: rgba(169, 124, 55, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spotlight-info-panel {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}

.spotlight-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.spotlight-vibe-tag {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.spotlight-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.spotlight-desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0.2rem 0 0 0;
}

.spotlight-progress-section {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(185, 138, 69, 0.1);
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.progress-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-grow: 1;
  text-align: left;
}

.progress-label-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-dark);
}

.progress-remaining {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.progress-track-bar {
  height: 8px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 99px;
  overflow: hidden;
  width: 100%;
}

.progress-fill-bar {
  height: 100%;
  background: linear-gradient(90deg, #A97C37, #E5C060);
  border-radius: 99px;
  width: 0%;
  /* Animated via GSAP */
}

.progress-right-ring {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-text {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.spotlight-action-row {
  display: flex;
  gap: 1rem;
}

.btn-spotlight-action {
  flex-grow: 1;
  padding: 0.8rem 1.5rem;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(30, 26, 21, 0.05);
}

.btn-spotlight-action.booking {
  background: var(--accent-gold);
  color: #fff;
}

.btn-spotlight-action.booking:hover {
  background: #926b31;
  box-shadow: 0 8px 20px rgba(185, 138, 69, 0.22);
  transform: translateY(-2px);
}

.btn-spotlight-action.track {
  background: #1e1a15;
  color: #fff;
}

.btn-spotlight-action.track:hover {
  background: #332d26;
  box-shadow: 0 8px 20px rgba(30, 26, 21, 0.15);
  transform: translateY(-2px);
}

.btn-spotlight-action.tracked {
  background: rgba(16, 172, 132, 0.12);
  color: #10AC84;
  border: 1px solid rgba(16, 172, 132, 0.2);
  cursor: default;
  box-shadow: none;
}

/* Hide some legacy timeline layout elements */
.milestones-timeline-container,
.milestones-timeline-line,
.milestones-timeline-progress {
  display: none !important;
}

/* Subpages layout padding updates for fixed floating glass navbar */
.all-destinations-view,
.packages-view-container,
.nest-dashboard-view,
.destination-detail-view {
  padding-top: 8.5rem !important;
}

@media (max-width: 768px) {
  .all-destinations-view,
  .packages-view-container,
  .nest-dashboard-view,
  .destination-detail-view {
    padding-top: 7.5rem !important;
  }

  .packages-header-wrapper,
  .destinations-header-wrapper,
  .dashboard-header-wrapper,
  .detail-header-wrapper {
    top: 0.75rem !important;
    width: 92% !important;
    padding: 0 !important;
  }

  .destinations-hero-section {
    padding: 2.5rem 1.25rem 4.5rem !important;
    min-height: auto !important;
    background-image: none !important;
  }

  .destinations-hero-content {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 auto !important;
  }

  .destinations-hero-title {
    font-size: 2.2rem !important;
  }

  .destinations-trust-badges {
    justify-content: center !important;
    gap: 0.8rem !important;
  }

  .destinations-search-box {
    left: 1rem !important;
    right: 1rem !important;
    bottom: -24px !important;
  }
}

/* ===== WISHLIST VIEW STYLING ===== */
.wishlist-section-header {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(169, 124, 55, 0.15);
  padding-bottom: 0.8rem;
}

.wishlist-section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: 0.02em;
}

.wishlist-section-header i {
  color: var(--accent-gold);
  width: 24px;
  height: 24px;
}

.wishlist-empty-state {
  text-align: center;
  padding: 4.5rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(30, 26, 21, 0.04);
  max-width: 540px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-sizing: border-box;
}

.wishlist-empty-state h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.5rem 0 0.25rem;
}

.wishlist-empty-state p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 0 1.25rem;
  line-height: 1.4;
}

.btn-wishlist-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 99px;
  background: var(--text-dark);
  color: #FFF;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 26, 21, 0.15);
}

.btn-wishlist-explore:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(169, 124, 55, 0.25);
}

.btn-wishlist-explore:active {
  transform: translateY(0);
}

.wishlist-category-panel {
  padding: 3.5rem;
  border-radius: 28px;
  margin-bottom: 4rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .wishlist-section-header {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
  }
  
  .wishlist-section-header h2 {
    font-size: 1.4rem;
  }
  
  .wishlist-empty-state {
    padding: 3rem 1.5rem;
    margin: 1rem auto;
  }

  .wishlist-category-panel {
    padding: 1.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}