/* ============================================
   ZOSTEL PLUS NAINA RANGE — Ultra Premium Landing
   Master Prompt V3.0 Design System
   Typography: Cormorant Garamond + Syne + DM Mono
   ============================================ */

/* Core Resets & Dark Theme */
html {
  scroll-behavior: smooth;
}
body {
  background: #0B1120;
  color: #F0EDE8;
  overflow-x: hidden;
  font-family: 'Inter', 'Syne', sans-serif;
  -webkit-font-smoothing: antialiased;
}
main {
  overflow-x: hidden;
}

body::before {
  display: none !important;
}

.font-serif {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

/* Brand Colors */
.text-sage { color: #7EB88A; }
.text-amber { color: #D97706; }
.text-gold { color: #B8860B; }
.text-forest { color: #2D5A27; }
.text-moss { color: #4A7C59; }

.eyebrow-tag {
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-padding {
  padding: 120px 5vw;
}

/* ============================================
   ANIMATIONS (IntersectionObserver driven)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px) translateZ(0); /* force GPU acceleration */
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   TOP NAVIGATION
   ============================================ */
.premium-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
.premium-nav.scrolled {
  background: rgba(7, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand em {
  font-style: italic;
}
.nav-brand span {
  font-weight: 400;
  color: #7EB88A;
  opacity: 0.9;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: auto;
  min-width: auto;
}
.nav-link:hover { color: #7EB88A; }

.nav-cta {
  background: linear-gradient(135deg, #4A7C59, #2D5A27);
  color: #F0EDE8;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  min-height: auto;
  min-width: auto;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #5A8C69, #3D6A37);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(45, 90, 39, 0.3);
  color: #F0EDE8;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 20, 0.97);
  backdrop-filter: blur(24px);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #F0EDE8;
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: auto;
  min-width: auto;
}
.mobile-menu-link:hover { color: #7EB88A; }

@media (max-width: 768px) {
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .premium-nav { padding: 16px 20px; }
  .premium-nav.scrolled { padding: 12px 20px; }
}

/* ============================================
   CINEMATIC AWWWARDS HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100dvh; /* Dynamic viewport height to prevent mobile overlap */
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  animation: slowPan 40s cubic-bezier(0.25, 1, 0.5, 1) forwards; /* Smoother, premium cinematic pan */
}
@keyframes slowPan {
  100% { transform: scale(1); }
}

.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04; pointer-events: none;
}
.hero-overlay-dark {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.8) 100%);
}

.hero-content-minimal {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Creates robust vertical spacing without absolute positioning */
  padding: clamp(100px, 12vh, 140px) 5vw clamp(40px, 8vh, 80px); /* Responsive padding avoiding nav */
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.hero-meta {
  display: flex; justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: clamp(0.65rem, 1vw, 0.75rem); 
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 16px;
  width: 100%;
}

.hero-titles-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Pushes titles towards bottom, above footer */
}

.hero-titles-minimal {
  margin-bottom: clamp(32px, 6vh, 64px);
}
.mask-wrap { overflow: hidden; padding-bottom: 0.05em; line-height: 0.9; }
.mask-text { 
  display: block; 
  transform: translateY(110%);
  animation: maskReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: #FFFFFF; margin: 0;
}
.title-line-1 {
  font-family: var(--font-heading);
  font-weight: 700; 
  font-size: clamp(3rem, 11vw, 11rem); /* Massive, cinematic scaling */
  text-transform: uppercase; letter-spacing: -0.04em;
  animation-delay: 0.1s;
}
.title-line-2 {
  font-size: clamp(3.2rem, 12vw, 12rem);
  color: #7EB88A; /* Sage accent */
  animation-delay: 0.25s;
  padding-left: clamp(20px, 10vw, 140px);
}

.hero-footer-minimal {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: clamp(24px, 4vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: clamp(24px, 4vh, 32px);
  width: 100%;
}
.hero-desc-minimal {
  max-width: 440px;
}
.hero-desc-minimal p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem); 
  line-height: 1.6; color: #D1D5DB; margin-bottom: 16px;
}
.rating-minimal {
  font-family: 'DM Mono', monospace; font-size: 0.8rem !important; color: #FBBF24 !important;
  text-transform: uppercase; letter-spacing: 0.05em; margin: 0;
}

.hero-ctas-minimal {
  display: flex; align-items: stretch; gap: 16px;
}
.cta-group { display: flex; flex-direction: column; gap: 8px; }

/* Premium Solid CTAs with Magnetic/Hover physics */
.cta-solid {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; border-radius: 4px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.cta-solid.primary {
  background: #FFFFFF; color: #000000;
  min-height: 100%;
  box-shadow: 0 4px 14px 0 rgba(255,255,255,0.2);
}
.cta-solid.primary:hover { 
  background: #F8FAFC; 
  transform: translateY(-2px);
  box-shadow: 0 8px 24px 0 rgba(255,255,255,0.3);
}

.cta-solid.secondary {
  background: rgba(255,255,255,0.03); color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px; font-size: 0.85rem;
  backdrop-filter: blur(8px);
}
.cta-solid.secondary:hover { 
  border-color: #FFFFFF; background: #FFFFFF; color: #000000;
  transform: translateY(-1px);
}
.cta-solid.secondary.whatsapp:hover { 
  background: #25D366; border-color: #25D366; color: #FFFFFF; 
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1024px) {
  .hero-footer-minimal { flex-direction: column; align-items: flex-start; }
  .hero-ctas-minimal { flex-direction: row; width: 100%; justify-content: flex-start; }
  .cta-group { flex-direction: row; }
}

@media (max-width: 640px) {
  .hero-content-minimal { padding: max(env(safe-area-inset-top), 80px) 5vw 40px; }
  .hero-titles-minimal { margin-bottom: 32px; }
  .title-line-2 { padding-left: 0; }
  .hero-ctas-minimal { flex-direction: column; width: 100%; }
  .cta-group { flex-direction: row; width: 100%; }
  .cta-solid.secondary { flex: 1; }
  .cta-solid { width: 100%; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #7EB88A;
  border-radius: 50%;
  animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

@media (max-height: 750px) {
  .scroll-indicator { display: none; }
}

/* ============================================
   JOURNEY SECTION
   ============================================ */
.intro-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.15;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #F0EDE8;
}

.airbnb-journey {
  padding: 100px 5%;
  background: var(--bg-primary);
}

.journey-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.airbnb-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.airbnb-subtext {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.journey-blocks {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.journey-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.journey-block.reverse {
  grid-template-columns: 1fr 1fr;
}

.journey-block.reverse .journey-image-wrapper {
  order: 2;
}

.journey-block.reverse .journey-text-wrapper {
  order: 1;
}

.journey-image-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.journey-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}

.journey-block:hover .journey-image-wrapper img {
  transform: scale(1.03);
}

.journey-text-wrapper {
  padding: 0 40px;
  text-align: left;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
}

.journey-text-wrapper h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.journey-text-wrapper p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .journey-blocks { gap: 80px; }
  .journey-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .journey-block.reverse .journey-image-wrapper { order: 1; }
  .journey-block.reverse .journey-text-wrapper { order: 2; }
  .journey-text-wrapper { padding: 0 20px; text-align: center; }
  .journey-image-wrapper { aspect-ratio: 1/1; }
}

/* ============================================
   TREK SECTION — Immersive Cinematic Timeline
   ============================================ */
.trek-section {
  position: relative;
  padding: 120px 5vw 80px;
  background: linear-gradient(180deg, #0B1120 0%, #081A0D 30%, #0A1F12 50%, #081A0D 70%, #0B1120 100%);
  overflow: hidden;
}

/* ── Atmospheric layers ── */
.trek-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.trek-fog {
  position: absolute;
  width: 120%;
  height: 200px;
  left: -10%;
  background: radial-gradient(ellipse at center, rgba(126,184,138,0.06) 0%, transparent 70%);
  filter: blur(40px);
  animation: trekFogDrift 20s ease-in-out infinite alternate;
}
.trek-fog--1 { top: 20%; animation-duration: 22s; }
.trek-fog--2 { top: 55%; animation-duration: 28s; animation-delay: -8s; opacity: 0.7; }

@keyframes trekFogDrift {
  0% { transform: translateX(-5%) translateZ(0); }
  100% { transform: translateX(5%) translateZ(0); }
}

/* Floating firefly particles */
.trek-particles {
  position: absolute;
  inset: 0;
}
.trek-particle {
  position: absolute;
  left: var(--x, 50%);
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7EB88A;
  box-shadow: 0 0 8px 2px rgba(126,184,138,0.5);
  opacity: 0;
  animation: trekFloat var(--d, 16s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes trekFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 0.8; transform: translateY(-10vh) scale(1); }
  50% { opacity: 0.4; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* ── Header ── */
.trek-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.trek-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-style: italic;
  line-height: 1.1;
  color: #F0EDE8;
  margin-bottom: 24px;
}
.trek-distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(126,184,138,0.08);
  border: 1px solid rgba(126,184,138,0.15);
  color: #7EB88A;
  font-family: 'DM Mono', 'SFMono-Regular', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trek-distance-badge svg {
  opacity: 0.8;
}
.trek-distance-sep {
  opacity: 0.4;
}

/* ── Vertical Timeline ── */
.trek-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
  z-index: 1;
}

/* Animated glowing path line */
.trek-path {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(126,184,138,0.12);
  transform: translateX(-50%);
}
.trek-path-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 80px;
  border-radius: 4px;
  background: linear-gradient(180deg, transparent, #7EB88A, transparent);
  box-shadow: 0 0 16px 4px rgba(126,184,138,0.3);
  animation: trekPathPulse 4s ease-in-out infinite;
}
@keyframes trekPathPulse {
  0% { top: -80px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: calc(100% + 80px); opacity: 0; }
}

/* ── Waypoint (each step) ── */
.trek-waypoint {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 0;
}
.trek-waypoint:last-child { margin-bottom: 0; }

/* Node (the circle on the path) */
.trek-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trek-node-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(126,184,138,0.25);
  animation: trekRingPulse 3s ease-in-out infinite;
}
.trek-node-core {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2D5A27, #4A7C59);
  color: #F0EDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(45,90,39,0.35), 0 0 30px rgba(126,184,138,0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}
.trek-waypoint.active .trek-node-core {
  transform: scale(1.15);
  box-shadow: 0 6px 30px rgba(45,90,39,0.5), 0 0 40px rgba(126,184,138,0.25);
}
@keyframes trekRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 0; }
}

/* Final node (arrival) — golden glow */
.trek-node--final .trek-node-core {
  background: linear-gradient(145deg, #B8860B, #D4A020);
  box-shadow: 0 4px 20px rgba(184,134,11,0.35), 0 0 30px rgba(212,160,32,0.15);
}
.trek-node--final .trek-node-ring {
  border-color: rgba(212,160,32,0.3);
}

/* ── Trek Cards ── */
.trek-card {
  width: calc(50% - 48px);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.trek-card:hover {
  transform: translateY(-4px) translateZ(0);
  border-color: rgba(126,184,138,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(126,184,138,0.05);
}

/* Accent gradient bar at top of each card */
.trek-card-accent {
  height: 3px;
  background: linear-gradient(90deg, #2D5A27, #7EB88A, #2D5A27);
  opacity: 0.6;
}
.trek-card--arrival .trek-card-accent {
  background: linear-gradient(90deg, #B8860B, #D4A020, #B8860B);
}

/* Card position: alternating left/right */
.trek-card--left {
  margin-right: auto;
}
.trek-card--right {
  margin-left: auto;
}

.trek-card-body {
  padding: 24px 28px 28px;
}
.trek-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.trek-card-distance {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: #7EB88A;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(126,184,138,0.1);
  border: 1px solid rgba(126,184,138,0.15);
}
.trek-card-elevation {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.trek-card h3 {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F0EDE8;
  margin-bottom: 8px;
}
.trek-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* Arrival card has warm tint */
.trek-card--arrival {
  border-color: rgba(212,160,32,0.12);
  background: rgba(212,160,32,0.03);
}
.trek-card--arrival:hover {
  border-color: rgba(212,160,32,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(212,160,32,0.08);
}
.trek-card--arrival .trek-card-distance {
  color: #D4A020;
  background: rgba(212,160,32,0.1);
  border-color: rgba(212,160,32,0.2);
}

/* ── Trek Essentials Grid ── */
.trek-essentials {
  max-width: 900px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}
.trek-essentials-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #F0EDE8;
  margin-bottom: 24px;
  text-align: center;
}
.trek-essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trek-essential-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.trek-essential-card:hover {
  border-color: rgba(126,184,138,0.18);
  transform: translateY(-2px);
}
.trek-essential-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.trek-essential-card strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F0EDE8;
  margin-bottom: 4px;
}
.trek-essential-card span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── Quote ── */
.trek-quote {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: #7EB88A;
  margin-top: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  .trek-section {
    padding: 80px 20px 60px;
  }
  .trek-path {
    left: 24px;
  }
  .trek-node {
    left: 24px;
    width: 36px;
    height: 36px;
  }
  .trek-node-core {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .trek-node-core svg {
    width: 14px;
    height: 14px;
  }
  .trek-waypoint {
    flex-direction: column;
    padding-left: 56px;
    margin-bottom: 36px;
  }
  .trek-card,
  .trek-card--left,
  .trek-card--right {
    width: 100%;
    margin: 0;
  }
  .trek-essentials-grid {
    grid-template-columns: 1fr;
  }
  .trek-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }
  .trek-quote {
    font-size: 1.4rem;
  }
  .trek-distance-badge {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
  }
}

/* ============================================================
   TREK — CREATIVE UPGRADE  (fonts, scenery, walking hiker)
   ============================================================ */

/* Handwritten "trail journal" eyebrow */
.trek-eyebrow-script {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 600;
  color: #8FD0A0;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  position: relative;
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow: 0 2px 18px rgba(126, 184, 138, 0.35);
}
.trek-eyebrow-script::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -6px;
  height: 6px;
  background: no-repeat center/100% 6px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='6' viewBox='0 0 120 6'%3E%3Cpath d='M1 4 C 30 1, 60 6, 90 3 S 118 2, 119 4' fill='none' stroke='%237EB88A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: 0.75;
}

/* Elegant gradient display title (Cormorant now actually loads) */
.trek-title {
  background: linear-gradient(118deg, #FFFFFF 0%, #CFEBD5 44%, #7EB88A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #EAF3EA; /* fallback for non-clip browsers */
  letter-spacing: 0.005em;
  filter: drop-shadow(0 6px 26px rgba(126, 184, 138, 0.18));
}

/* Moonlight glow at the top of the section */
.trek-sky-glow {
  position: absolute;
  top: -6%;
  left: 50%;
  width: 78%;
  height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(180, 220, 190, 0.16) 0%, rgba(126, 184, 138, 0.05) 42%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

/* Layered mountain range at the base */
.trek-mountains {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(160px, 26vw, 300px);
  pointer-events: none;
  z-index: 0;
  transform: translateY(var(--trek-parallax, 0px));
  will-change: transform;
}
.trek-mountains .tm-range { transition: none; }
.trek-mountains .tm-back { fill: rgba(126, 184, 138, 0.10); }
.trek-mountains .tm-mid { fill: #0A2314; }
.trek-mountains .tm-front { fill: #06160C; }

/* Trekked-distance progress fill on the path */
.trek-path-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 0%;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(126, 184, 138, 0.2), #8FD0A0 90%);
  box-shadow: 0 0 14px 2px rgba(126, 184, 138, 0.45);
  transition: height 0.15s linear;
  z-index: 1;
}

/* ── The walking hiker ── */
.trek-hiker {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.12s linear;
  will-change: top;
}
.trek-hiker-shadow {
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 26px;
  height: 7px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 70%);
  border-radius: 50%;
  animation: thShadow 0.5s ease-in-out infinite;
}
.trek-hiker-svg {
  fill: none;
  stroke: #EAF3EA;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
  animation: thBob 0.5s ease-in-out infinite;
  overflow: visible;
}
.trek-hiker-svg .th-head { fill: #F0EDE8; stroke: none; }
.trek-hiker-svg .th-pack { fill: #7EB88A; stroke: none; }
.trek-hiker-svg .th-hat { stroke: #8FD0A0; stroke-width: 3.4; }
.trek-hiker-svg .th-pole { stroke: #C9A46B; stroke-width: 2.2; }

.th-leg { transform-box: view-box; }
.th-leg-front { transform-origin: 20px 30px; animation: thLegFront 0.5s ease-in-out infinite; }
.th-leg-back { transform-origin: 20px 30px; animation: thLegBack 0.5s ease-in-out infinite; }
.th-arm { transform-box: view-box; transform-origin: 20px 19px; animation: thArm 0.5s ease-in-out infinite; }
.th-pole { transform-box: view-box; transform-origin: 9px 20px; animation: thPole 0.5s ease-in-out infinite; }

@keyframes thBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.5px); } }
@keyframes thLegFront { 0%, 100% { transform: rotate(20deg); } 50% { transform: rotate(-20deg); } }
@keyframes thLegBack { 0%, 100% { transform: rotate(-20deg); } 50% { transform: rotate(20deg); } }
@keyframes thArm { 0%, 100% { transform: rotate(-12deg); } 50% { transform: rotate(12deg); } }
@keyframes thPole { 0%, 100% { transform: rotate(5deg); } 50% { transform: rotate(-5deg); } }
@keyframes thShadow { 0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); } 50% { opacity: 0.3; transform: translateX(-50%) scaleX(0.8); } }

/* Node lights up brighter once the hiker has passed it */
.trek-waypoint.active .trek-node-ring {
  border-color: rgba(143, 208, 160, 0.9);
  box-shadow: 0 0 22px 4px rgba(126, 184, 138, 0.4);
}

@media (max-width: 768px) {
  /* Keep the hiker + progress centred on the mobile path (which sits at 24px) */
  .trek-hiker { width: 32px; }
  .trek-hiker-svg { width: 28px; height: 34px; }
  .trek-eyebrow-script { font-size: clamp(1.4rem, 7vw, 1.9rem); }
}

@media (prefers-reduced-motion: reduce) {
  .trek-hiker-svg,
  .th-leg-front, .th-leg-back, .th-arm, .th-pole,
  .trek-hiker-shadow,
  .trek-eyebrow-script { animation: none !important; }
  .trek-hiker { transition: none; }
  .trek-mountains { transform: none; }
}

/* ============================================
   ROOMS SHOWCASE
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.room-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 184, 138, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(126, 184, 138, 0.08);
}
.room-img-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.room-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover .room-img-wrapper img {
  transform: scale(1.05);
}
.room-content {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.room-content h3 {
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-bottom: 12px;
  color: #F0EDE8;
}
.room-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.feature-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}
.room-cta {
  display: inline-block;
  color: #7EB88A;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: auto;
  min-width: auto;
}
.room-cta:hover { color: #9ED4A8; }

/* Check-in info row */
.checkin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.checkin-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
}

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

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 5vw 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 320px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .gallery-item { flex: 0 0 280px; height: 200px; }
}

/* ============================================
   BENTO GRID (AMENITIES)
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 24px;
  margin-top: 48px;
}
.bento-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(126, 184, 138, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.bento-item h3 {
  font-size: 1.4rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  color: #F0EDE8;
}
.bento-large h3 { font-size: 2rem; }
.bento-item p {
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.bento-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-block;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large, .bento-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
}

/* Amenities Marquee/Ticker */
.amenities-marquee {
  margin-top: 48px;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.marquee-track span {
  white-space: nowrap;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 5vw 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 340px;
  padding: 36px;
  scroll-snap-align: start;
}
.testimonial-stars {
  color: #B8860B;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: #F0EDE8;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 600px) {
  .testimonial-card { flex: 0 0 300px; padding: 28px; }
}

/* ============================================
   ACTIVITIES GRID
   ============================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.activity-card {
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 184, 138, 0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.activity-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.activity-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F0EDE8;
  margin-bottom: 8px;
}
.activity-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

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

/* ============================================
   PORTALS / SERVICES
   ============================================ */
.section-portals {
  padding: 120px 5vw;
  background: #060913;
}
.portals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.portal-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  text-decoration: none;
  color: #F0EDE8;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7EB88A, transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.portal-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-8px);
  border-color: rgba(126, 184, 138, 0.3);
  box-shadow: 0 20px 40px rgba(126, 184, 138, 0.08);
}
.portal-card:hover::before { transform: scaleX(1); }

.portal-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(126, 184, 138, 0.1);
  padding: 16px;
  border-radius: 20px;
  color: #7EB88A;
}
.portal-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.portal-title::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #7EB88A;
}
.portal-card:hover .portal-title::after {
  opacity: 1;
  transform: translateX(0);
}
.portal-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.staff-badge {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 100px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ============================================
   LOCATION & HOW TO REACH
   ============================================ */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 48px;
}
.travel-card {
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
}
.travel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 184, 138, 0.2);
}
.travel-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.travel-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F0EDE8;
  margin-bottom: 8px;
}
.travel-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.contact-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #F0EDE8;
  transition: all 0.3s ease;
  min-height: auto;
  min-width: auto;
}
.contact-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  color: #F0EDE8;
}
.contact-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.premium-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 5vw;
  background: #070C14;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  max-width: 400px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-contacts {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.footer-contacts a {
  color: #7EB88A;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
  min-height: auto;
  min-width: auto;
}
.footer-contacts a:hover { color: #9ED4A8; }

.footer-links h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #F0EDE8;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: auto;
  min-width: auto;
}
.footer-links a:hover { color: #7EB88A; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
/* ============================================
   PREMIUM SLIDING MOTION GALLERY
   ============================================ */
.gallery-section {
  background: var(--bg-base);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gallery-header {
  margin-bottom: var(--space-8);
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--space-4);
  /* Fade edges for premium look */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 20px 0 60px 0;
}

.marquee-track {
  display: flex;
  gap: var(--space-4);
  min-width: 200%;
  animation: scrollMarquee 40s linear infinite;
  padding-left: var(--space-4);
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 320px;
  height: 400px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(1);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.marquee-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.marquee-item:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: var(--shadow-2xl);
  z-index: 10;
}

.marquee-item:hover img {
  transform: scale(1.08);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--space-4) / 2))); }
}

@media (max-width: 768px) {
  .marquee-item { width: 260px; height: 340px; }
  .marquee-wrapper { mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MOBILE REFINEMENTS
   ============================================ */
@media (max-width: 600px) {
  .section-padding { padding: 80px 5vw; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta { width: 100%; justify-content: center; }
  .hero-rating-row { font-size: 0.8rem; gap: 8px; }
  .checkin-row { flex-direction: column; align-items: center; }
}

/* ============================================
   AIRBNB LOCATION & FOOTER SECTION
   ============================================ */
.airbnb-location {
  padding: 80px 5%;
  background: white;
  color: #222;
}

.airbnb-location .airbnb-heading {
  color: #222;
}

.airbnb-location .airbnb-subtext {
  color: #717171 !important;
}

.airbnb-map-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}

.map-pin {
  background: white;
  color: #222;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.airbnb-travel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.airbnb-travel-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.airbnb-travel-item .travel-icon {
  font-size: 2rem;
}

.airbnb-travel-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 8px;
}

.airbnb-travel-item p {
  color: #717171;
  font-size: 1rem;
  line-height: 1.5;
}

.airbnb-contact-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.airbnb-btn {
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid #222;
  color: #222;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.airbnb-btn:hover {
  background: #f7f7f7;
}

.airbnb-btn.dark {
  background: #222;
  color: white;
}

.airbnb-btn.dark:hover {
  background: #000;
}

.airbnb-footer {
  background: #F7F7F7;
  padding: 60px 5% 24px;
  border-top: 1px solid #DDDDDD;
  color: #222;
}

.airbnb-footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  text-decoration: underline;
}

.airbnb-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #DDDDDD;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #222;
}

.footer-right {
  display: flex;
  gap: 12px;
}

@media (max-width: 900px) {
  .airbnb-travel-grid { grid-template-columns: 1fr 1fr; }
  .airbnb-footer-top { grid-template-columns: 1fr; }
  .airbnb-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .airbnb-travel-grid { grid-template-columns: 1fr; }
  .airbnb-contact-row { flex-direction: column; }
}

/* ============================================
   AIRBNB COMPLETE UI UNIFICATION
   ============================================ */

.airbnb-section {
  padding: 80px 5%;
  background: white;
  color: #222;
}

.airbnb-section.bg-gray {
  background: #F7F7F7;
}

.airbnb-header {
  margin-bottom: 48px;
}

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

.airbnb-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.airbnb-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid #DDDDDD;
  display: flex;
  flex-direction: column;
}

.airbnb-card-img {
  width: 100%;
  aspect-ratio: 3/2;
}

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

.airbnb-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.airbnb-card-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #717171;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.airbnb-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 12px;
}

.airbnb-card p {
  color: #717171;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.airbnb-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: auto;
}

.airbnb-features span {
  font-size: 0.9rem;
  color: #222;
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
}

.airbnb-btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #222;
  color: #222;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.airbnb-btn-outline:hover {
  background: #f7f7f7;
}

.airbnb-checkin-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 48px auto 0;
  flex-wrap: wrap;
  font-family: var(--font-body);
  color: #222;
  font-weight: 500;
}

.airbnb-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.airbnb-amenity-card {
  display: flex;
  gap: 24px;
}

.amenity-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.amenity-text h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 8px;
}

.amenity-text p {
  color: #717171;
  font-size: 1rem;
  line-height: 1.5;
}

.airbnb-testimonials-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
}

.airbnb-review-card {
  flex: 0 0 350px;
  padding: 32px;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.review-text {
  font-size: 1.1rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  color: #222;
  font-family: var(--font-heading);
}

.review-author span {
  color: #717171;
  font-size: 0.9rem;
}

/* ============================================
   EXPERIENCES SECTION (Premium Yellow)
   ============================================ */
/* ============================================
   EXPERIENCES SECTION (Premium Yellow & Dark Cards)
   ============================================ */
.experiences-section {
  padding: 120px 0;
  background: #FFD600; /* Pure vibrant yellow, not gold */
  color: #111111;
  position: relative;
  overflow: hidden;
}

.experiences-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Decorative Header */
.experiences-decorative-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.decor-line {
  height: 2px;
  width: 120px;
  background: #111111;
}
.decor-illustration svg {
  color: #111111;
}

.experiences-header {
  text-align: center;
  margin-bottom: 72px;
  padding: 0 5vw;
}
.experiences-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.experiences-subtext {
  font-family: 'DM Mono', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  color: #333333;
}

.experiences-grid {
  display: flex;
  gap: 32px;
  padding: 0 5vw 64px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar */
  scrollbar-width: none;
}
.experiences-grid::-webkit-scrollbar {
  display: none;
}

.experience-card {
  flex: 0 0 calc(33.333% - 22px);
  min-width: 320px;
  padding: 48px 40px;
  background: #111111;
  border-radius: 0; /* Sharp premium edges */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.experience-card:hover {
  transform: scale(1.02) translateY(-8px);
}

.experience-icon {
  font-size: 3rem;
  margin-bottom: 32px;
}

.experience-card h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFFFFF;
  line-height: 1.2;
}

.experience-card p {
  color: #A0A0A0;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

.airbnb-portals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.airbnb-portal-card {
  padding: 32px;
  background: white;
  border-radius: 16px;
  border: 1px solid #DDDDDD;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #222;
}

.airbnb-portal-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.airbnb-portal-card .portal-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.airbnb-portal-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.airbnb-portal-card p {
  color: #717171;
  font-size: 1rem;
  line-height: 1.5;
}

.staff-badge {
  background: #222;
  color: white;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   MOBILE & TABLET PREMIUM DESIGN OVERHAUL (V3.0)
   ============================================================ */
.mobile-nav-cta {
  display: none;
}

@media (max-width: 768px) {
  /* 1. Floating Capsule Navigation */
  .premium-nav {
    top: 16px;
    left: 16px;
    right: 16px;
    padding: 10px 18px !important;
    border-radius: 40px;
    background: rgba(11, 17, 32, 0.4);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    width: auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .premium-nav.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 12px 20px !important;
    background: rgba(7, 12, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-brand {
    font-size: 1.35rem;
  }

  .nav-actions {
    display: none;
  }

  .mobile-nav-cta {
    display: block;
    margin-left: auto;
    margin-right: 12px;
  }

  .nav-cta-mini {
    background: linear-gradient(135deg, #4A7C59, #2D5A27);
    color: #F0EDE8;
    padding: 8px 18px;
    border-radius: 100px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
  }

  .hamburger {
    display: flex;
  }

  /* 2. Premium Staggered Mobile Menu Overlay */
  .mobile-menu {
    background: rgba(7, 12, 20, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px 24px 32px;
    box-sizing: border-box;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-header {
    position: absolute;
    top: 22px;
    left: 32px;
  }

  .mobile-menu-content {
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    margin-top: 20px;
  }

  .mobile-menu-link {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #F0EDE8;
    position: relative;
    padding-left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-link span {
    font-family: 'DM Mono', monospace;
    font-size: 0.9rem;
    color: #7EB88A;
    font-weight: 400;
  }

  .mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
  .mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
  .mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
  .mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.03);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .footer-contact-item .icon {
    font-size: 1.25rem;
  }

  .footer-contact-item .label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
  }

  .footer-contact-item .val {
    color: #F0EDE8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
  }

  /* 3. Hero Section Responsive Optimization */
  .hero-section {
    padding-top: calc(env(safe-area-inset-top) + 100px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .collab-badge {
    padding: 6px 16px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    gap: 8px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-rating-row {
    font-size: 0.8rem;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* 4. Section Spacing & Layout grids */
  .section-padding {
    padding: 60px 20px;
  }

  .airbnb-heading {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .airbnb-subtext {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Journey block lists */
  .airbnb-journey {
    padding: 60px 20px;
  }

  .journey-block {
    flex-direction: column !important;
    gap: 16px;
    margin-bottom: 40px;
  }

  .journey-image-wrapper {
    width: 100% !important;
    height: 240px;
  }

  .journey-text-wrapper {
    width: 100% !important;
    padding: 0 !important;
  }

  .journey-text-wrapper h3 {
    font-size: 1.3rem;
  }



  /* Accommodations cottage slider */
  .airbnb-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .airbnb-card {
    border-radius: 16px;
    overflow: hidden;
  }

  .airbnb-card-img {
    height: 220px;
  }

  .airbnb-card-content {
    padding: 20px;
  }

  .airbnb-card-content h3 {
    font-size: 1.3rem;
  }

  .airbnb-features {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  /* Amenities bento list */
  .airbnb-amenities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .airbnb-amenity-card {
    padding: 20px;
  }

  .airbnb-amenity-card .amenity-icon {
    font-size: 1.8rem;
  }

  .airbnb-amenity-card h3 {
    font-size: 1.15rem;
  }

  /* Testimonials client slider */
  .airbnb-testimonials-grid {
    gap: 16px;
    padding: 10px 0 20px;
  }

  .airbnb-review-card {
    flex: 0 0 280px;
    padding: 24px;
  }

  .review-text {
    font-size: 0.95rem;
  }

  /* Experiences sticky horizontal scroll */
  .experiences-grid {
    display: flex;
    gap: 16px;
    padding: 0 5vw 32px;
  }
  .experiences-heading {
    font-size: 2.5rem;
  }
  .experience-card {
    flex: 0 0 85vw;
    min-width: 0;
    padding: 32px 24px;
  }

  /* Journey section creative sticky mobile scroll */
  .journey-blocks { 
    position: relative;
    padding-bottom: 24px;
  }
  .journey-block {
    position: sticky;
    height: 75vh;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
  }
  .journey-block:nth-child(1) { top: 80px; z-index: 10; }
  .journey-block:nth-child(2) { top: 100px; z-index: 20; }
  .journey-block:nth-child(3) { top: 120px; z-index: 30; margin-bottom: 0; }
  
  .journey-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
  }
  .journey-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .journey-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  }
  .journey-text-wrapper {
    position: relative;
    z-index: 1;
    margin-top: auto; /* push to bottom */
    padding: 40px 24px 60px !important;
    background: transparent;
    color: white;
  }
  .journey-text-wrapper h3 {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
  .journey-text-wrapper p {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  }
  .step-num {
    color: var(--accent);
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);

  }
  .airbnb-portals-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .airbnb-portal-card {
    padding: 20px;
    position: relative;
    border-radius: 12px;
  }

  .airbnb-portal-card .portal-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .airbnb-portal-card h4 {
    font-size: 1.15rem;
  }

  .airbnb-portal-card p {
    font-size: 0.9rem;
  }

  /* Map location view */
  .airbnb-travel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .airbnb-travel-item {
    gap: 16px;
  }

  .airbnb-contact-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .airbnb-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer responsiveness */
  .airbnb-footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .airbnb-footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
