/* =====================================
   TABLE OF CONTENTS
   =====================================
   
   1. ROOT VARIABLES & BASE STYLES
   2. NAVIGATION & BREADCRUMBS
   3. BACKGROUND ELEMENTS & ANIMATIONS
   4. HERO SECTIONS & MEDIA GRIDS
   5. TYPOGRAPHY & SECTIONS
   6. TRIP CARDS & HIGHLIGHTS
   7. BUTTONS & INTERACTIVE ELEMENTS
   8. FORMS & INPUTS
   9. MODALS & OVERLAYS
   10. ITINERARY & PRICING
   11. FAQ & CONTENT SECTIONS
   12. FOOTER & LEGAL PAGES
   13. MOBILE RESPONSIVE DESIGN
   14. UTILITIES & HELPERS
   15. ANIMATIONS & EFFECTS
   
   ===================================== */

/* =====================================
   1. ROOT VARIABLES & BASE STYLES
   ===================================== */

:root {
  /* Brand Colors */
  --gold: #d4af37;
  --platinum: #e5e4e2;
  --black: #111;
  --white: #ffffff;
  --gray: #f5f5f5;
  
  /* Color Design System */
  --color-primary: #d4af37;        /* Gold - Primary brand */
  --color-primary-light: #f4e4a6;  /* Light gold */
  --color-primary-dark: #b8941f;   /* Dark gold */
  --color-primary-darker: #aa7e11; /* Darker gold */
  --color-accent: #e5c16c;         /* Gold accent */
  --color-accent-light: #b7a56a;   /* Muted gold */
  
  --color-neutral-50: #ffffff;     /* Pure white */
  --color-neutral-100: #fffbe7;    /* Cream white */
  --color-neutral-200: #f5e8c8;    /* Light cream */
  --color-neutral-300: #f0f0f0;    /* Light gray */
  --color-neutral-400: #e5e4e2;    /* Platinum */
  --color-neutral-500: #999999;    /* Medium gray */
  --color-neutral-600: #777777;    /* Dark gray */
  --color-neutral-700: #666666;    /* Darker gray */
  --color-neutral-800: #222222;    /* Dark text */
  --color-neutral-900: #111111;    /* Black */
  
  --color-text-primary: #111111;   /* Main text */
  --color-text-secondary: #222222; /* Secondary text */
  --color-text-muted: #666666;     /* Muted text */
  --color-text-light: #8c8c8c;     /* Light text */
  --color-text-inverse: #ffffff;   /* White text */
  
  --color-background: #ffffff;     /* Main background */
  --color-background-alt: #f5f5f5; /* Alt background */
  --color-background-cream: #fffbe7; /* Cream background */
  
  --color-border: #eeeeeee;        /* Light borders */
  --color-border-light: rgba(212, 175, 55, 0.3); /* Gold borders */
  
  /* Font Variables */
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --font-display: "Playfair Display", serif;
  
  /* Typography Scale - Desktop */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */
  --text-7xl: 4.5rem;     /* 72px */
  --text-8xl: 6rem;       /* 96px */
  
  /* Font Weight Scale */
  --weight-thin: 100;
  --weight-extralight: 200;
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-black: 900;
  
  /* Motion & Animation Design System */
  /* Duration Scale */
  --duration-instant: 0.1s;       /* Immediate feedback */
  --duration-fast: 0.2s;          /* Quick interactions */
  --duration-normal: 0.3s;        /* Standard transitions */
  --duration-slow: 0.6s;          /* Deliberate animations */
  --duration-slower: 1.2s;        /* Emphasis animations */
  
  /* Easing Functions */
  --ease-linear: linear;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.77, 0, 0.18, 1);
  
  /* Transform Scale */
  --scale-none: 1;
  --scale-micro: 1.01;
  --scale-small: 1.02;
  --scale-medium: 1.03;
  --scale-large: 1.1;
  
  /* Motion Distances */
  --translate-micro: 1px;
  --translate-small: 3px;
  --translate-medium: 6px;
  --translate-large: 10px;

  /* Spacing Design System - Desktop */
  /* Based on 8px grid system for consistency and scalability */
  --space-0: 0;           /* 0px - No space */
  --space-1: 0.25rem;     /* 4px - Micro spacing */
  --space-2: 0.5rem;      /* 8px - Extra small */
  --space-3: 0.75rem;     /* 12px - Small */
  --space-4: 1rem;        /* 16px - Base unit */
  --space-5: 1.25rem;     /* 20px - Medium small */
  --space-6: 1.5rem;      /* 24px - Medium */
  --space-8: 2rem;        /* 32px - Large */
  --space-10: 2.5rem;     /* 40px - Extra large */
  --space-12: 3rem;       /* 48px - XXL */
  --space-16: 4rem;       /* 64px - Section spacing */
  --space-20: 5rem;       /* 80px - Large section spacing */
  --space-24: 6rem;       /* 96px - Hero/major sections */
  --space-32: 8rem;       /* 128px - Massive spacing */

  /* Component-specific spacing shortcuts */
  --space-card-padding: var(--space-6);      /* Standard card padding */
  --space-section-padding: var(--space-20);  /* Section vertical padding */
  --space-element-gap: var(--space-4);       /* Gap between related elements */
  --space-component-gap: var(--space-8);     /* Gap between components */

  /* Border Radius Design System */
  /* Limited set of radius values for consistency */
  --radius-none: 0;           /* No radius - sharp corners */
  --radius-sm: 0.25rem;       /* 4px - Small elements */
  --radius-md: 0.5rem;        /* 8px - Standard elements */
  --radius-lg: 0.75rem;       /* 12px - Cards, buttons */
  --radius-xl: 1rem;          /* 16px - Large cards */
  --radius-2xl: 1.5rem;       /* 24px - Hero sections, major cards */
  --radius-3xl: 2rem;         /* 32px - Premium components */
  --radius-full: 50%;         /* Perfect circles */
  --radius-pill: 50px;        /* Pill-shaped buttons */

  /* Component-specific radius shortcuts */
  --radius-button: var(--radius-3xl);        /* Standard button radius */
  --radius-card: var(--radius-xl);           /* Standard card radius */
  --radius-input: var(--radius-pill);        /* Input field radius */
  --radius-media: var(--radius-lg);          /* Images, videos */


}

/* Mobile Typography Scale */
@media (max-width: 768px) {
  :root {
    /* Responsive Typography Scale - Mobile */
    --text-xs: 0.7rem;      /* 11px */
    --text-sm: 0.8rem;      /* 13px */
    --text-base: 0.9rem;    /* 14px */
    --text-lg: 1rem;        /* 16px */
    --text-xl: 1.1rem;      /* 18px */
    --text-2xl: 1.25rem;    /* 20px */
    --text-3xl: 1.5rem;     /* 24px */
    --text-4xl: 1.75rem;    /* 28px */
    --text-5xl: 2.25rem;    /* 36px */
    --text-6xl: 2.75rem;    /* 44px */
    --text-7xl: 3.25rem;    /* 52px */
    --text-8xl: 4rem;       /* 64px */
    
    /* Mobile Spacing Scale - Reduced for smaller screens */
    --space-1: 0.2rem;      /* 3px - Micro spacing */
    --space-2: 0.4rem;      /* 6px - Extra small */
    --space-3: 0.6rem;      /* 10px - Small */
    --space-4: 0.8rem;      /* 13px - Base unit */
    --space-5: 1rem;        /* 16px - Medium small */
    --space-6: 1.2rem;      /* 19px - Medium */
    --space-8: 1.5rem;      /* 24px - Large */
    --space-10: 2rem;       /* 32px - Extra large */
    --space-12: 2.5rem;     /* 40px - XXL */
    --space-16: 3rem;       /* 48px - Section spacing */
    --space-20: 3.5rem;     /* 56px - Large section spacing */
    --space-24: 4rem;       /* 64px - Hero/major sections */
    --space-32: 5rem;       /* 80px - Massive spacing */

    /* Mobile component spacing */
    --space-card-padding: var(--space-4);      /* Reduced card padding */
    --space-section-padding: var(--space-16);  /* Reduced section padding */
  }
}

body {
  font-family: var(--font-primary);
  font-optical-sizing: auto;
  font-weight: var(--weight-normal);
  font-style: normal;
  color: var(--black);
  background: var(--color-background);
  margin: var(--space-0);
  padding: var(--space-0);
}

/* Loader */
#loading {
  text-align: center;
  padding: var(--space-16);
  font-size: var(--text-5xl);
  color: var(--color-neutral-500);
  margin-top: var(--space-24);
}

/* Fade-in for trip content */
#trip-content {
  display: none;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-in-out);
}
#trip-content.show {
  display: block;
  opacity: 1;
}

/* =====================================
   2. NAVIGATION & BREADCRUMBS
   ===================================== */

/* Breadcrumb Navigation */
.breadcrumb-nav {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.3px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: #666;
}

.breadcrumb-item a {
  color: #b89c1d;
  transition: all 0.3s ease;
  text-underline-offset: 5px;
}

.breadcrumb-item a:hover {
  color: #d4af37;
  opacity: 1;
}

.breadcrumb-item.active {
  color: #666;
  opacity: 0.9;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #666;
  opacity: 0.7;
  font-weight: 400;
}

/* Navbar & Branding */
.make-tv {
  overflow: hidden !important;
  border-radius: var(--radius-button);
  margin: var(--space-4);
}
.navbar {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.7);
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.navbar-brand {
  font-family: var(--font-display);
}


/* Mobile Optimization - font sizes handled by design system */
@media (max-width: 768px) {
  /* Mobile styles for other components */
}

@media (max-width: 480px) {

  
  /* Truncate long breadcrumb text on very small screens */
  .breadcrumb-item {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* =====================================
   3. BACKGROUND ELEMENTS & ANIMATIONS
   ===================================== */

/* Premium SVG Background Elements */
.premium-bg-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
  will-change: transform;
}

/* Pattern 1 - Top Right Geometric */
.bg-pattern-1 {
  top: 5%;
  right: -5%;
  width: 400px;
  height: 400px;
  animation: floatSlow 25s ease-in-out infinite;
  transform-origin: center;
}

/* Pattern 2 - Left Side Geometric */
.bg-pattern-2 {
  top: 20%;
  left: -8%;
  width: 300px;
  height: 600px;
  animation: floatMedium 20s ease-in-out infinite reverse;
  transform-origin: center;
}

/* Pattern 3 - Bottom Right */
.bg-pattern-3 {
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 300px;
  animation: floatSlow 30s ease-in-out infinite;
  transform-origin: center;
}

/* Floating Dots Pattern */
.bg-pattern-dots {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: subtleFloat 40s linear infinite;
  opacity: 0.6;
}

/* Subtle floating animations */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(1deg) scale(1.02);
  }
  50% {
    transform: translateY(-10px) rotate(-0.5deg) scale(0.98);
  }
  75% {
    transform: translateY(-30px) rotate(0.8deg) scale(1.01);
  }
}

@keyframes floatMedium {
  0%, 100% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateX(15px) translateY(-15px) rotate(0.5deg);
  }
  66% {
    transform: translateX(-10px) translateY(-25px) rotate(-0.3deg);
  }
}

@keyframes subtleFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .bg-pattern-1 {
    width: 300px;
    height: 300px;
    right: -10%;
  }
  
  .bg-pattern-2 {
    width: 250px;
    height: 500px;
    left: -12%;
  }
  
  .bg-pattern-3 {
    width: 400px;
    height: 250px;
    right: -15%;
  }
}

@media (max-width: 768px) {
  .bg-pattern-1 {
    width: 200px;
    height: 200px;
    opacity: 0.4;
  }
  
  .bg-pattern-2 {
    width: 180px;
    height: 350px;
    opacity: 0.3;
  }
  
  .bg-pattern-3 {
    width: 250px;
    height: 150px;
    opacity: 0.4;
  }
  
  .bg-pattern-dots {
    opacity: 0.3;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .bg-pattern {
    animation: none !important;
    transform: none !important;
  }
}

/* Journey Path SVG Background */
.journey-paths {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.journey-path {
  position: absolute;
  pointer-events: none;
}

.journey-path path {
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: dashFlow 20s linear infinite;
}

/* Individual path positioning */
.path-1 {
  top: 10%;
  left: -10%;
  width: 60%;
  height: 30%;
  transform: rotate(-5deg);
}

.path-2 {
  top: 40%;
  left: 10%;
  width: 70%;
  height: 35%;
  transform: rotate(3deg);
}

.path-3 {
  top: 20%;
  right: -15%;
  width: 50%;
  height: 45%;
  transform: rotate(8deg);
}

.path-4 {
  top: 60%;
  left: -5%;
  width: 80%;
  height: 20%;
  transform: rotate(-2deg);
}

.path-5 {
  bottom: 15%;
  left: 15%;
  width: 60%;
  height: 15%;
  transform: rotate(4deg);
}

/* Subtle animation for the dashed lines */
@keyframes dashFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 200;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .journey-path {
    opacity: 0.5;
  }
  
  .path-1, .path-2, .path-3, .path-4, .path-5 {
    transform: scale(0.8) rotate(0deg);
  }
  
  .path-3 {
    display: none; /* Hide one path on mobile to reduce clutter */
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .journey-path path {
    animation: none;
  }
}

/* =====================================
   4. HERO SECTIONS & MEDIA GRIDS
   ===================================== */

/* Hero Media Grid Section */
.hero-trip {
  margin-top: var(--space-24);
  overflow: hidden;
  padding: var(--space-0);
  width: 100%;
  position: relative;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: 1fr;
  gap: 12px;
  width: 100%;
  padding: var(--space-0);
  margin: var(--space-0);
  position: relative;
}

.hero-main-media {
  grid-column: 1;
  grid-row: 1;
  border-radius: var(--radius-media);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--color-neutral-300);
}

.hero-video-container,
.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform var(--duration-fast) var(--ease-out);
}

.hero-video-container:hover,
.hero-image-container:hover {
  transform: scale(var(--scale-micro));
}

.hero-main-video,
.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-media);
}

/* Hide video progress bar and controls */
.hero-main-video::-webkit-media-controls-panel {
  display: none !important;
}

.hero-main-video::-webkit-media-controls-play-button {
  display: none !important;
}

.hero-main-video::-webkit-media-controls-timeline {
  display: none !important;
}

.hero-main-video::-webkit-media-controls-current-time-display {
  display: none !important;
}

.hero-main-video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.hero-main-video::-webkit-media-controls-mute-button {
  display: none !important;
}

.hero-main-video::-webkit-media-controls-volume-slider {
  display: none !important;
}

.hero-main-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* Firefox video controls */
.hero-main-video::-moz-media-controls {
  display: none !important;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-full);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-2xl);
  opacity: 0.9;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.hero-video-container:hover .video-play-overlay {
  opacity: 1;
}

/* Video Controls Overlay */
.video-controls-overlay {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.hero-video-container:hover .video-controls-overlay {
  opacity: 1;
}

.video-control-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  backdrop-filter: blur(10px);
}

.video-control-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(var(--scale-large));
  color: var(--gold);
}

.video-control-btn:active {
  transform: scale(0.95);
}

.hero-thumbnail-grid {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: 2fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
}

.hero-thumbnail:first-child {
  grid-column: 1 / -1;
  grid-row: 1;
}

.hero-thumbnail:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.hero-thumbnail:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.hero-thumbnail {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out);
  background: var(--color-neutral-300);
}

.hero-thumbnail:hover {
  transform: scale(var(--scale-medium));
}

.hero-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-all-photos-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 10;
}

.all-photos-button {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.all-photos-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

/* Media Overlay Modal */
.media-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(238, 237, 237, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.media-overlay-content {
  background: white;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.media-overlay-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-8) var(--space-12);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid #eee;
  background: white;
}

.overlay-header-content {
  text-align: center;
  flex: 1;
}

.media-overlay-header h2 {
  margin: var(--space-0) var(--space-0) var(--space-2) var(--space-0);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--black);
  font-weight: var(--weight-extrabold);
  font-style: normal !important;
}

.overlay-subtitle {
  margin: var(--space-0);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--weight-normal);
  opacity: 0.8;
  letter-spacing: 0.3px;
}

.close-overlay {
  background: rgba(13, 27, 42, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: var(--text-lg);
  cursor: pointer;
  color: var(--black);
  transition: all 0.3s ease;
  padding: 0;
  position: absolute;
  right: var(--space-8);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.close-overlay:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  color: #0d1b2a;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.close-overlay:active {
  transform: translateY(-50%) scale(0.95);
}

.media-overlay-grid {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-0);
  display: flex;
  flex-direction: column;
  align-content: start;
}

.media-overlay-video-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-overlay-images-section {
  flex: 1;
  padding: var(--space-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-content: start;
  justify-items: center;
}

.overlay-media-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  aspect-ratio: 9/16; /* TikTok-style vertical aspect ratio */
  position: relative;
}

.overlay-media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overlay-media-item.video-item {
  width: 95%;
  margin: var(--space-0) auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 9/16;
}

.overlay-media-item.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.overlay-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.overlay-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.no-media-message {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-xl);
  padding: var(--space-12);
}

/* Mobile Responsive Design for Media Overlay - 3-2-1 Layout */
@media (max-width: 992px) {
  .media-overlay-images-section {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    padding: var(--space-6);
  }
}

@media (max-width: 576px) {
  .media-overlay-images-section {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  
  .overlay-media-item {
    margin: 0 auto;
  }
  
}

/* Mobile Responsive Design for Hero Media */
@media (max-width: 768px) {
  .hero-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 350px;
    gap: 0;
  }
  
  .hero-main-media {
    grid-column: 1;
    grid-row: 1;
  }
  
  .hero-main-video,
  .hero-main-image {
    object-fit: cover;
    object-position: center center;
    transform: translateX(0);
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .hero-video-container,
  .hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .video-controls-overlay {
    top: var(--space-6);
    right: var(--space-2);
    gap: var(--space-2);
  }
  
  .video-control-btn {
    width: 35px;
    height: 35px;
    font-size: var(--text-sm);
  }
  
  .hero-thumbnail-grid {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 120px;
    height: 80px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
  }
  
  .hero-all-photos-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
  }
  
  .media-overlay-content {
    width: 100vw;
    height: 100vh;
  }
  
  .media-overlay-header {
    padding: var(--space-6) var(--space-4);
  }
  
  .media-overlay-header h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-1);
  }
  
  .overlay-subtitle {
    font-size: var(--text-sm);
    line-height: 1.4;
  }
  
  .close-overlay {
    right: 1rem;
    font-size: var(--text-xl);
  }
  
  .media-overlay-images-section {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    padding: var(--space-4);
  }

}

@media (max-width: 480px) {
  .hero-media-grid {
    height: 320px;
  }
  
  .hero-thumbnail-grid {
    width: 100px;
    height: 70px;
    bottom: 8px;
    right: 8px;
  }
  
  .hero-all-photos-btn {
    bottom: 8px;
    left: 8px;
  }
  
  .all-photos-button {
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-sm);
  }
  
  .media-overlay-content {
    width: 100vw;
    height: 100vh;
  }
  
  .media-overlay-header {
    padding: var(--space-4) var(--space-3);
  }
  
  .media-overlay-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-1);
  }
  
  .overlay-subtitle {
    font-size: var(--text-xs);
    line-height: 1.3;
    padding: var(--space-0) var(--space-4);
  }
  
  .close-overlay {
    right: var(--space-3);
    font-size: var(--text-lg);
    padding: var(--space-1);
  }
  
  .media-overlay-images-section {
    grid-template-columns: 1fr;
    padding: var(--space-3);
    gap: var(--space-3);
  }
  
  .media-overlay-video-section {
    min-height: 200px;
    max-height: 220px;
  }

  
  .overlay-media-item {
    border-radius: var(--radius-md);
  }
}

/* Legacy parallax styles (keeping for compatibility) */
.parallax-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.parallax-img {
  will-change: transform;
  transition: transform 1.2s cubic-bezier(.77,0,.18,1);
}

.parallax-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
}
.parallax-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gradient-text {
  background: linear-gradient(45deg, var(--black), var(--gold), var(--platinum));
  background-size: 400% 400%;
  animation: gradientFlow 10s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Section Content */
.make-tv {
  overflow: hidden !important;
  border-radius: var(--radius-button);
  margin: var(--space-4);
}
.navbar {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.7);
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.navbar-brand {
  font-family: var(--font-display);
}

/* =====================================
   5. TYPOGRAPHY & SECTIONS
   ===================================== */

/* Hero Section Content */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.trip-header-row {
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
  text-align: left;
}

.trip-header-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-5);
  margin-bottom: var(--space-1);
}
.trip-header-meta-card {
  background: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(212,175,55,0.07), 0 1.5px 0 #fff inset;
  padding: var(--space-5) var(--space-6);
  min-width: 170px;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.trip-header-meta-card.gold {
  background: linear-gradient(90deg, #e5c16c 0%, #d4af37 100%);
  color: var(--color-text-primary);
  font-weight: var(--weight-bold);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.18), 0 1.5px 0 #fff inset;
}
.trip-header-meta-card .meta-label {
  font-size: var(--text-sm);
  font-style: italic;
  color: #b7a56a;
  margin-bottom: var(--space-1);
}
.trip-header-meta-card .meta-value {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
}
.hero-content {
  z-index: 3;
  padding: var(--space-8);
}
.hero-content h1 {
  font-size: var(--text-8xl);
  color: white;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: var(--weight-extrabold);
  font-style: normal;
}
.hero-content p {
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  max-width: 800px;
  margin: var(--space-4) auto;
  color: white;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Sections & Typography */
.section {
  padding: var(--space-section-padding) var(--space-4);
}

.trip-header-row h1 {
  font-size: var(--text-6xl);
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: var(--weight-extrabold);
  font-style: normal;
  line-height: var(--space-20);
}

.section-title, h2 {
  font-family: var(--font-display) ;
  font-optical-sizing: auto;
  font-weight: var(--weight-semibold);
  font-style: italic;
  font-size: var(--text-5xl);
  padding-left: 0.1em;
  margin-left: -0.1em;
}
.section-sub-title {
  font-optical-sizing: auto;
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--color-text-muted);
}
.max-width-800 {
  max-width: 800px;
}

/* =====================================
   6. TRIP CARDS & HIGHLIGHTS
   ===================================== */
/* Premium Trip Cards Section */
.trip-section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  position: relative;
}


/* Trip images now use .trip-bg for background-image cover. No <img> tags are used for trip cards. */
.image-adjest {
  margin: var(--space-0) !important;
  padding: var(--space-0) !important;
  min-height: 220px;
  display: flex;
  align-items: stretch;
} /* Only one definition needed */

/* Premium Trip Card */
.trip {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.11), 0 1.5px 0 #fff inset;
  border: 1.5px solid #e5c16c;
  transition: box-shadow 0.35s, transform 0.25s, border-color 0.25s;
  margin-bottom: var(--space-12);
  padding: var(--space-0) !important;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: stretch;
}
.trip:hover {
  box-shadow: 0 12px 40px 0 rgba(212, 175, 55, 0.18), 0 1.5px 0 #fff inset;
  transform: translateY(-6px) scale(1.012);
  border-color: #d4af37;
}




.trip-bg {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 !important;
}

@media (max-width: 767.98px) {
  .trip-bg {
    aspect-ratio: 4/3;
    height: auto;
    min-height: 180px;
  }
}

/* Trip Description Styling */
.trip-description {
  padding: var(--space-card-padding) var(--space-card-padding);
  font-size: var(--text-xl);
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  line-height: 1.8;
  color: var(--color-text-secondary);
  position: relative;
}

/* Trip Curator Section */

/* =====================================
   7. BUTTONS & INTERACTIVE ELEMENTS
   ===================================== */

/* UNIFIED BUTTON SYSTEM */

/* Base button styles */
.btn-base {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  letter-spacing: 0.05em;
  border-radius: var(--radius-button);
}

/* Shimmer effect for premium buttons */
.btn-base.btn-shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}
.btn-base.btn-shimmer:hover::before {
  left: 100%;
}

/* Primary Button - Main CTAs */
.btn-primary {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
  text-transform: uppercase;
  color: var(--color-text-primary);
  background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 25%, #b8941f 50%, #d4af37 75%, #f4e4a6 100%);
  background-size: 200% 200%;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
  color: var(--color-text-primary);
  text-decoration: none;
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

/* Secondary Button - Large CTAs */
.btn-secondary {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: #fff;
  background: linear-gradient(90deg, #d4af37 0%, #aa7e11 100%);
  border: 2px solid #d4af37;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background: linear-gradient(90deg, #bfa041 0%, #d4af37 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(212,175,55,0.22), 0 2px 8px #fffbe7;
  transform: translateY(-2px) scale(1.025);
  text-decoration: none;
}

/* Utility Button - Small actions */
.btn-utility {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: #2c2c2c;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}
.btn-utility:hover {
  color: #2c2c2c;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f4e4a6, #d4af37);
}

/* Form Button - For email/notify forms */
.form-fields:hover {
  transform: translateY(-1px);
}

.btn-form {
  padding: var(--space-3) var(--space-6);
  font-weight: var(--weight-bold);
  color: #000;
  background: var(--color-primary);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}
.btn-form:hover {
  color: #000;
  text-decoration: none;
  background: var(--color-primary-dark);
}

/* Size modifiers */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}
.btn-lg {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-xl);
}

/* Mobile responsive - button sizes handled by design system variables */

.curator-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-8);
}

.creative-curator {
  background: none;
  position: relative;
  min-height: 420px;
  overflow: visible;
  z-index: 1;
}
.curator-bg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.curator-bg-shape.shape1 {
  top: -40px;
  left: -60px;
}
.curator-bg-shape.shape2 {
  bottom: -30px;
  right: 10%;
}
.curator-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  background: none;
}
.meet-curator-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  margin-bottom: 1.6rem;
  letter-spacing: -1px;
  color: #1a1a1a;
  background: none;
}
.curator-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.7rem;
}
.creative-img {
  border-radius: var(--radius-full);
  border: 5px solid #f5e8c8;
  box-shadow: 0 6px 30px rgba(212,175,55,0.13);
  width: 140px;
  height: 140px;
  object-fit: cover;
  background: #fffbe7;
  transition: box-shadow 0.3s, transform 0.3s;
}
.creative-img:hover {
  box-shadow: 0 12px 40px rgba(212,175,55,0.23);
  transform: scale(1.045);
}
.curator-bio-card {
  max-width: 900px;
  margin: 0 auto;
  min-height: 70px;
}
.creative-bio {
  font-size: var(--text-lg);
  color: #3c3622;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.curator-signature {
  margin-top: 1.2rem;
  font-size: var(--text-4xl);
  font-family: var(--font-display) !important;
  color: var(--color-text-secondary);
  letter-spacing: 1.5px;
  font-weight: var(--weight-semibold);
  font-style: italic;
}
.signature-font {
  font-size: var(--text-4xl);
  color: #b7a56a;
  background: none;
}
@media (max-width: 600px) {
  .curator-content {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .creative-img {
    width: 94px;
    height: 94px;
  }
  .curator-bio-card {
    padding: 1.1rem 0.5rem;
  }
  .curator-signature, .signature-font {
    font-size: var(--text-xl);
  }
  .meet-curator-title {
    font-size: var(--text-3xl);
  }
}

.curator-section {
  background: linear-gradient(120deg, #fffbe7 0%, #f5e8c8 100%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.09), 0 1.5px 0 #fff inset;
  margin: 3.5rem 0 2.5rem 0;
  padding: 2.5rem 2rem;
  display: block;
  position: relative;
  overflow: hidden;
}
.curator-card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.07);
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.curator-image {
  border: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.13);
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-right: 2rem;
  background: #fffbe7;
}
.curator-name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--gold), var(--black));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.curator-bio {
  font-size: var(--text-lg);
  font-family: var(--font-primary);
  color: #4e4a3a;
  margin-top: 0.2rem;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .curator-card {
    flex-direction: column !important;
    text-align: center;
    padding: 1.5rem 0.6rem;
  }
  .curator-image {
    margin: 0 0 1rem 0;
    width: 200px;
    height: 200px;
  }
  .curator-name {
    font-size: var(--text-3xl);
  }
  .curator-bio {
    font-size: var(--text-lg);
  }
}

/* =====================================
   11. FAQ & CONTENT SECTIONS
   ===================================== */

/* FAQ Section (Minimal, Premium) */
.faq-section {
  background: var(--color-background);
  padding: 2.5rem 0 2rem 0;
  margin: 0 auto;
  box-shadow: none;
  border-radius: 0;
}
.faq-list {
  padding: 0;
  margin: 0;
}
.faq-minimal {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gold);
}
.faq-minimal:last-child {
  border-bottom: none;
}
.faq-q {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 0.3rem;
}
.faq-a {
  font-family: var(--font-primary);
  color: #444;
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

/* FAQ Load More Button */
.faq-load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.faq-load-more-btn i {
  font-size: var(--text-sm);
  transition: transform 0.3s ease;
}

.faq-load-more-btn:hover i {
  transform: translateY(2px);
}

/* Remove .trip-img-wrapper styles */
.trip-img-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
}



@media (max-width: 767.98px) {
  .trip-img-wrapper {
    aspect-ratio: 4/3;
    height: auto;
    min-height: 180px;
  }
  .trip-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    display: block;
  }
  .trip, .image-adjest {
    min-height: unset !important;
    height: auto !important;
    display: block !important;
  }
  .trip img {
    min-height: 180px;
    height: auto;
    max-height: 320px;
    aspect-ratio: unset;
  }
}



/* Premium "Coming Soon" Badge */
.coming-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-weight: var(--weight-bold);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  letter-spacing: 0.06em;
  color: var(--color-text-primary);
  background: linear-gradient(90deg, #e1dac9 0%, #9e9e9d 50%, #868582 100%);  
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.coming-badge::after {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.05) 100%);
  transform: skewX(-25deg);
  animation: shine 2.4s infinite linear;
}
@keyframes shine {
  0% { left: -60%; }
  100% { left: 120%; }
}

.live-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-weight: var(--weight-bold);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #28a745 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.25), 0 1.5px 0 rgba(255,255,255,0.3) inset;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.live-badge::after {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  transform: skewX(-25deg);
  animation: shine 2.4s infinite linear;
}

.trip-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.trip-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}



/* Experience highlights new layout */
.price-note {
  font-size: var(--text-xs);
  color: #404040;
  font-style: italic;
  margin-top: 0.15em;
  font-weight: 200;
}

.highlights-description-section {
  margin-top: 5rem;
  margin-bottom: 10rem;
}

/* Instant Camera Picture Layout */
.highlights-list {
  position: relative;
  min-height: 800px;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.highlight-experience {
  position: absolute;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 15px 25px 15px;
  transform-origin: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 280px;
  cursor: pointer;
}

.highlight-experience:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* Dynamic positioning is now handled by JavaScript for true randomness */

.highlight-experience-img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 15px;
  background: #f8f9fa;
}

.highlight-experience-text {
  text-align: center;
  padding: 0 5px;
}

.highlight-experience-title {
  font-size: var(--text-lg);
  margin-bottom: 8px;
  color: #2c3e50;
  line-height: 1.3;
  font-style: italic;
  font-weight: 600;
}

.highlight-experience-desc {
  font-size: var(--text-base);
  color: #555;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}

.highlight-experience-desc.faq-a {
  font-size: var(--text-base);
  color: #6c757d;
  line-height: 1.6;
  margin-top: 0.5rem;
  padding-left: 0;
}

/* Mobile responsive design - Carousel/slider layout */
@media (max-width: 768px) {
  .highlights-list {
    min-height: auto;
    padding: 20px 0;
    position: relative;
    overflow: visible;
    display: block;
    width: 100%;
  }
  
  .highlights-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 550px;
    margin-bottom: var(--space-2);
    display: block !important;
    visibility: visible !important;
  }
  
  .highlights-carousel-wrapper {
    position: relative;
    height: 600px;
  }
  
  .highlight-experience {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) rotate(0deg) !important;
    margin: 0;
    width: 380px;
    max-width: 90vw;
    padding: 25px 25px 35px 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    z-index: 1;
  }
  
  .highlight-experience.active {
    opacity: 1;
    z-index: 3;
    transform: translateX(-50%) rotate(-1deg) scale(1) !important;
  }
  
  .highlight-experience.next {
    opacity: 0.7;
    z-index: 2;
    transform: translateX(-30%) rotate(2deg) scale(0.95) !important;
  }
  
  .highlight-experience.prev {
    opacity: 0.7;
    z-index: 2;
    transform: translateX(-70%) rotate(-2deg) scale(0.95) !important;
  }
  
  .highlight-experience:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18), 0 6px 20px rgba(0, 0, 0, 0.12);
  }
  
  .highlight-experience.active:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.02) !important;
  }
  
  .highlight-experience-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .highlight-experience-title {
    font-size: var(--text-xl);
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
  }
  
  .highlight-experience-desc {
    font-size: var(--text-lg);
    color: #555;
    line-height: 1.5;
  }
  
  /* Carousel Navigation */
  .highlights-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .highlights-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .highlights-nav.prev {
    left: 10px;
  }
  
  .highlights-nav.next {
    right: 10px;
  }
  
  .highlights-nav svg {
    width: 40px;
    height: 40px;
    fill: #2c3e50;
  }
  
  /* Carousel Dots */
  .highlights-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
    z-index: 10;
  }
  
  .highlights-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .highlights-dot.active {
    background: #2c3e50;
    transform: scale(1.2);
  }
}

@media (max-width: 480px) {
  .highlights-carousel-container {
    min-height: 520px;
    margin-bottom: var(--space-1);
  }
  
  .highlights-carousel-wrapper {
    height: 600px;
  }
  
  .highlight-experience {
    width: 440px;
    max-width: 95vw;
    padding: 22px 22px 30px 22px;
  }
  
  .highlight-experience-img {
    height: 320px;
    margin-bottom: 18px;
  }
  
  .highlight-experience-title {
    font-size: var(--text-lg);
    margin-bottom: 12px;
  }
  
  .highlight-experience-desc {
    font-size: var(--text-base);
    line-height: 1.4;
  }
  
  .highlights-nav {
    width: 65px;
    height: 65px;
  }
  
  .highlights-nav.prev {
    left: 8px;
  }
  
  .highlights-nav.next {
    right: 8px;
  }
  
  .highlights-nav svg {
    width: 40px;
    height: 40px;
  }
}

/* Distinct style for experience highlights */
.highlights .highlight-box {
  background: #f5f9ff;
  border: 2px solid #3a7bd5;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 12px rgba(58, 123, 213, 0.08);
  color: #234;
  padding: 1.2em 1.5em;
  margin-bottom: 1.2em;
  transition: box-shadow 0.2s, border 0.2s;
}
.highlights .highlight-box:hover {
  box-shadow: 0 4px 18px rgba(58, 123, 213, 0.16);
  border-color: #285a9c;
}

/* Keep .highlight-grid and .highlight-box as is for pricing/trip info */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.highlight-grid .price{
  display: none !important;
}

.highlight-box {
  background: var(--gray);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}
.highlight-box:hover {
  transform: translateY(var(--translate-small));
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.highlight-box .label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-neutral-500);
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.highlight-box .value {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--black);
}
.highlight-box .icon {
  font-size: var(--text-5xl);
  margin-bottom: 0.5rem;
  display: block;
}
.highlight-box .price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
}
.highlight-box.urgent {
  background: var(--gold);
  color: var(--black);
}
.highlight-box.urgent .label {
  color: var(--black);
  font-weight: bold;
}
.highlight-box.urgent .value {
  font-size: var(--text-xl);
  font-weight: 600;
}

/* CTA Button Enhancement for Urgent Box */
.highlight-box.urgent.cta-button {
  background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
  border: 2px solid #b89c1d;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.highlight-box.urgent.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f4d03f 0%, var(--gold) 100%);
}

.highlight-box.urgent.cta-button:active {
  transform: translateY(-1px) scale(1.01);
}

.highlight-box.urgent.cta-button .cta-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--black);
  margin-top: 8px;
  text-align: center;
  opacity: 0.8;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.highlight-box.urgent.cta-button:hover .cta-text {
  opacity: 1;
}

/* Add subtle pulse animation */
.highlight-box.urgent.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.highlight-box.urgent.cta-button:hover::before {
  transform: translateX(100%);
}

/* =====================================
   10. ITINERARY & PRICING
   ===================================== */

/* Itinerary Cards (Trip Page) */
.pricing-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 220px;
  padding: 1rem;
  background: rgba(248, 248, 248, 0.4);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.1);
}
/* Enhanced consolidated itinerary grid */
.itinerary-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

/* Consolidated itinerary styles - duplicates removed */
.itinerary-day-badge {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
}

.itinerary-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  margin-bottom: 0.7rem;
}

/* Enhanced consolidated itinerary card styles */
.itinerary-card {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 0.3px solid var(--gold);
}

.itinerary-card:hover {
  transform: translateY(var(--translate-small));
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.itinerary-details {
  display: flex;
  gap: 2.2rem;
  align-items: stretch;
  min-height: 220px;
}
.itinerary-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 2.2rem 2.2rem 2.2rem;
}
/* Duplicate removed - consolidated above */
.itinerary-desc {
  font-size: var(--trip-description);
  color: var(--color-text-secondary);
  opacity: 0.92;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.itinerary-hotel {
  margin-top: 0.75rem;
  margin-bottom: 0.3rem;
  font-size: var(--trip-description);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.itinerary-meals {
  margin-top: 0.5rem;
  font-size: var(--trip-description);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.itinerary-meal-badge {
  display: inline-block;
  background: #f5e8c8;
  color: #7a6514;
  border-radius: var(--radius-md);
  padding: 2px 10px;
  font-size: var(--text-sm);
  margin-right: 0.4em;
  margin-bottom: 2px;
}
.itinerary-img-col {
  flex-basis: 32%;
  min-width: 140px;
  max-width: 100%;
  display: flex;
  align-items: stretch;
  height: 100%;
}
.itinerary-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  display: block;
  background-color: #eee;
  min-height: 600px;
}

/* Consolidated Mobile Responsive Rules */
@media (max-width: 900px) {
  .itinerary-details {
    gap: 1.1rem;
  }
  .itinerary-text {
    padding: 1.2rem;
  }
  .itinerary-title {
    font-size: var(--text-lg);
  }
  .itinerary-desc {
    font-size: var(--text-sm);
  }
}

@media (max-width: 768px) {
  .itinerary-card {
    padding: var(--space-6);
  }
  .itinerary-title {
    font-size: var(--text-xl);
  }
  .itinerary-desc {
    font-size: var(--text-base);
  }
  /* Hotel section mobile fixes */
  .itinerary-hotel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
  .hotel-star-rating {
    margin-left: 0;
    flex-shrink: 0;
    font-size: var(--text-sm);
    padding: 3px 6px;
  }
  .hotel-star-rating .star-label {
    font-size: var(--text-sm);
    margin-left: 2px;
  }
}

@media (max-width: 600px) {
  .itinerary-details {
    flex-direction: column;
    gap: 0.5rem;
    min-height: 0;
  }
  .itinerary-img-col {
    flex-basis: unset;
    min-width: 0;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-1);
  }
  .itinerary-img {
    border-radius: var(--radius-xl);
    height: 100%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .itinerary-text {
    padding: 1.1rem 1.1rem 0.7rem 1.1rem;
  }
  .itinerary-day-badge {
    font-size: var(--text-sm);
    margin-bottom: 0.7rem;
  }
}

/* =====================================
   8. FORMS & INPUTS
   ===================================== */

/* Forms (Email/Notify) */
.email-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
.form-fields {
  display: flex;
  width: 100%;
}
.email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  border: 2px solid var(--gold-primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.email-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(var(--gold-primary), 0.1);
}

.form-response {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: var(--text-xs);
}

/* =====================================
   15. ANIMATIONS & EFFECTS
   ===================================== */

/* Custom Animations */
.animated-block {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: opacity, transform;
}
.animated-block.in-view {
  opacity: 1;
  transform: none;
}

.animated-block {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: opacity, transform;
}
.animated-block.in-view {
  opacity: 1;
  transform: none;
}

/* =====================================
   12. FOOTER & LEGAL PAGES
   ===================================== */

/* Reusable Footer Components */
.footer-underline-effect {
  position: relative;
  display: inline-block;
}

.footer-underline-effect::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--platinum);
  transition: width 0.3s ease;
}

.footer-underline-effect:hover::after {
  width: 100%;
}

.footer-hover-lift {
  transition: all var(--duration-normal) var(--ease-out);
}

.footer-hover-lift:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Footer Main Container */
.footer {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
  color: var(--platinum);
  padding: 4rem 0 2rem;
  border-top: 5px solid var(--gold);
}

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #333;
}

.footer-logo-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo {
  height: 200px;
  width: auto;
}

/* Trip Content Section */
.footer-trip-content {
  text-align: left;
  justify-self: start;
}

.footer-trip-link {
  font-size: var(--text-2xl);
  text-decoration: none;
  color: var(--platinum);
  font-weight: var(--weight-extrabold);
}

.footer-trip-link::after {
  bottom: 0.8rem;
}

.footer-trip-link:hover::after {
  width: calc(100% - 2rem);
}

.footer-trip-link h3 {
  font-weight: var(--weight-bold);
  color: var(--platinum);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  transition: all var(--duration-normal) var(--ease-out);
}

.footer-trip-link h3 i {
  font-size: var(--text-base);
  margin-left: 0.5rem;
  transition: all var(--duration-normal) var(--ease-out);
}

.footer-trip-link:hover h3 i {
  transform: translateX(3px);
}

.footer-trip-content p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--platinum);
  margin-bottom: 1rem;
  max-width: 400px;
  opacity: 0.8;
  font-family: var(--font-primary);
}

/* Contact Section */
.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  align-items: flex-end;
}

.footer-phone,
.footer-email {
  text-decoration: none;
  color: var(--platinum);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  width: fit-content;
}

.footer-phone {
  font-size: var(--text-5xl);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.footer-email {
  font-size: var(--text-3xl);
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Footer Navigation Sections */
.footer-bottom-sections {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  margin-bottom: 3rem;
  text-align: left;
  align-items: start;
}

.footer-social,
.footer-legal {
  justify-self: end;
  min-width: 150px;
}

.footer-nav h5,
.footer-social h5,
.footer-legal h5 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--platinum);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.footer-nav ul,
.footer-legal ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li,
.footer-legal ul li,
.footer-social ul li {
  margin-bottom: 0.8rem;
}

.footer-nav ul li a,
.footer-legal ul li a,
.footer-social ul li a {
  color: var(--platinum);
  text-decoration: none;
  font-size: var(--text-xs);
  opacity: 0.8;
  font-family: var(--font-primary);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--platinum);
  opacity: 0.6;
  font-family: var(--font-primary);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--platinum);
  text-decoration: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.footer-bottom a:hover {
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  
  .footer-logo {
    height: 80px;
    margin: 0 auto;
  }
  
  .footer-contact {
    text-align: center;
    gap: 0.3rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  
  .footer-phone {
    font-size: var(--text-2xl);
  }
  
  .footer-email {
    font-size: var(--text-lg);
  }
  
  .footer-bottom-sections {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-trip-content {
    display: none;
  }
  
  .footer-social,
  .footer-legal {
    display: inline-block;
    vertical-align: top;
    margin: 0 1.5rem;
    min-width: auto;
    text-align: center;
  }
  
  .footer-social h5,
  .footer-legal h5 {
    font-size: var(--text-sm);
    margin-bottom: 0.8rem;
  }
  
  .footer-nav ul li,
  .footer-legal ul li,
  .footer-social ul li {
    margin-bottom: 0.4rem;
  }
  
  .footer-nav ul li a,
  .footer-legal ul li a,
  .footer-social ul li a {
    font-size: var(--text-sm);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 0.8rem;
  }
  
  .footer-top {
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    padding-bottom: 1rem;
  }
  
  .footer-logo {
    height: 60px;
  }
  
  .footer-contact {
    gap: 0.2rem;
  }
  
  .footer-phone {
    font-size: var(--text-xl);
  }
  
  .footer-email {
    font-size: var(--text-base);
  }
  
  .footer-social,
  .footer-legal {
    margin: 0 0.8rem;
  }
  
  .footer-social h5,
  .footer-legal h5 {
    margin-bottom: var(--space-2);
  }
  
  .footer-nav ul li,
  .footer-legal ul li,
  .footer-social ul li {
    margin-bottom: var(--space-1);
  }
  
  .footer-nav ul li a,
  .footer-legal ul li a,
  .footer-social ul li a {
    font-size: var(--text-xs);
  }
  
  .footer-bottom {
    gap: 0.3rem;
    padding-top: 0.8rem;
  }
}

/* =====================================
   14. UTILITIES & HELPERS
   ===================================== */
.hidden {
  display: none !important;
}
.trip-img-js {
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

/* =====================================
   13. MOBILE RESPONSIVE DESIGN
   ===================================== */
@media (max-width: 768px) {
  .highlight-box {
    padding: var(--space-6);
  }
  .highlight-box .label {
    font-size: var(--text-base);
  }
  .highlight-box .value {
    font-size: var(--text-xl);
  }
  .highlight-box .price {
    font-size: var(--text-xl);
  }
  .highlight-box.urgent .value {
    font-size: var(--text-lg);
  }
  .itinerary-card {
    padding: 1.25rem;
  }
}
@media (max-width: 480px) {
  .highlight-grid {
    gap: 1.25rem;
  }
  .highlight-box {
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
}


@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.make-tv {
    overflow: hidden !important;
    border-radius: var(--radius-button);
    margin: 1rem;
}

.max-width-800 {
    max-width: 800px;
}

.email-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.form-fields {
    display: flex;
    width: 100%;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: var(--text-base);
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    outline: none;
    border: 2px solid #e5c16c;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.email-input:focus {
    border-color: #e5c16c;
    box-shadow: 0 0 0 3px rgba(229, 193, 108, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notify-btn {
    padding: 0.75rem 1.5rem;
    background: #d0b27d;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    cursor: pointer;
}

.form-response {
    margin-top: 1.5rem;
    font-style: italic;
    font-size: var(--text-xs);
}

.hidden {
  display: none !important;
}

.trip-img-js {
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}


    /* Subtle zoom-in effect on each image */
    .hero-trip img {
      transition: transform 5s ease;
    }


    /* Optional: Gradient overlay */
    .hero-trip::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
      z-index: 2;
      pointer-events: none;
    }




    .info-group {
      margin-bottom: 1.5rem;
      font-size: var(--text-lg);
    }

    .countdown {
      font-weight: 600;
      color: crimson;
    }

    .highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: var(--space-4);
      background: var(--highlight);
      padding: 1.5rem 0;
      border-radius: var(--radius-media);
      margin-bottom: 2rem;
    }

    .itinerary-day {
      margin-bottom: var(--space-4);
    }

    .faq-item {
      margin-bottom: var(--space-4);
    }

    .faq-question {
      cursor: pointer;
      font-weight: 600;
      background: var(--color-neutral-300);
      padding: var(--space-2);
      border-radius: var(--radius-sm);
    }

    .faq-answer {
      display: none;
      padding: 0.5rem 0.75rem;
      border-left: 3px solid #333;
      margin-top: 0.25rem;
    }

.trip-highlight-section.hidden {
  display: none;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;

}

.highlight-box {
  background: var(--gray);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.highlight-box:hover {
  transform: translateY(var(--translate-small));
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.highlight-box .label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-neutral-500);
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.highlight-box .value {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--black);
}

.highlight-box .icon {
  font-size: var(--text-5xl);
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-box .price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
}

.highlight-box.urgent {
  background: var(--gold);
  color: var(--black);
}

.highlight-box.urgent .label {
  color: var(--black);
  font-weight: bold;
}

.highlight-box.urgent .value {
  font-size: var(--text-xl);
  font-weight: 600;
}

/* Clickable pricing card styling */
.highlight-box.clickable-card {
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.highlight-box.clickable-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.highlight-box.clickable-card:hover::before {
  left: 100%;
}

.highlight-box.clickable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.highlight-box.clickable-card::after {
  content: 'scroll for options';
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: var(--text-xs);
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  font-weight: 500;
}

.highlight-box.clickable-card:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {

  .highlight-box {
    padding: var(--space-6);
  }

  .highlight-box .label {
    font-size: var(--text-base);
  }

  .highlight-box .value {
    font-size: var(--text-xl);
  }

  .highlight-box .price {
    font-size: var(--text-xl);
  }

  .highlight-box.urgent .value {
    font-size: var(--text-lg);
  }
}

@media (max-width: 480px) {
  .highlight-grid {
    gap: 1.25rem;
  }

  .highlight-box {
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
}






    .parallax-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120vh; /* extra height for smoothness */
        overflow: hidden;
        z-index: 1;
        will-change: transform;
      }

      .parallax-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }


    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .make-tv {
      overflow: hidden !important;
      border-radius: var(--radius-button);
      margin: 1rem;
    }

    .navbar {
      backdrop-filter: blur(20px);
      background-color: rgba(255, 255, 255, 0.7);
      font-optical-sizing: auto;
      font-weight:  800;
      font-style: normal;
    }

    .navbar-brand{ font-family: var(--font-display);}

    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
    }

/* Pricing Section - Vertical Tabs */

.pricing-section {
    margin-top: 6rem;
   }

.pricing-tabs-container {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.pricing-tabs-wrapper {
  display: flex;
  gap: 0;
  min-height: 280px;
  background: var(--gray);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Enhanced Tab Navigation */
.pricing-tabs-nav {
  flex: 0 0 260px;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.6), rgba(255, 255, 255, 0.4));
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  box-shadow: inset 2px 0 8px rgba(0, 0, 0, 0.03);
}

.pricing-tab-btn {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pricing-tab-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.pricing-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.9));
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
}

.pricing-tab-btn.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--gray);
}

.tab-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.tab-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
}

/* Tab Content */
.pricing-tabs-content {
  flex: 1;
  position: relative;
}

.pricing-tab-panel {
  display: none;
  padding: 1.5rem 2rem;
  height: 100%;
  overflow-y: auto;
}

.pricing-tab-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-content-header {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.pricing-content-title {
  font-size: var(--text-2xl);
  color: var(--black);
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
}

.pricing-content-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.pricing-content-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.pricing-content-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f4d03f, var(--gold));
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.price-note {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-neutral-600);
  font-style: italic;
}

.pricing-content-inclusions {
  flex: 1;
  margin-bottom: 1rem;
}

/* Side-by-side layout for pricing and inclusions on larger screens */
@media (min-width: 768px) {
  .pricing-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pricing-main-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }
  
  .pricing-content-price {
    flex: 0 0 300px;
    margin-bottom: 0;
  }
  
  .pricing-content-inclusions {
    flex: 1;
    margin-bottom: 0;
  }
}

.inclusions-title {
  font-size: var(--text-xl);
  color: var(--black);
  margin-bottom: 1.2rem;
  text-align: left;
  position: relative;
  padding-left: 2rem;
  letter-spacing: 0.3px;
}

.inclusions-title::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold), #f4d03f);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.inclusion-item {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: #555;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  transition: all var(--duration-fast) var(--ease-out);
}

.inclusion-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(4px);
}

.inclusion-item i {
  color: var(--gold);
  margin-right: 0.8rem;
  margin-top: 0.2rem;
  font-size: var(--text-base);
  flex-shrink: 0;
}

/* Enhanced chip-based inclusions layout */
.inclusions-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.inclusion-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #444;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.inclusion-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.4s ease;
}

.inclusion-chip:hover::before {
  left: 100%;
}

.inclusion-chip:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(248, 240, 200, 0.9));
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
  color: #333;
}

.inclusion-chip i {
  color: var(--gold);
  margin-right: 0.6rem;
  font-size: var(--text-sm);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.3));
}

.pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 1.2rem 2rem;
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Pricing Tabs */
@media (max-width: 768px) {
  .pricing-tabs-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  
  .pricing-tabs-nav {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0;
  }
  
  .pricing-tab-btn {
    flex: 0 0 auto;
    min-width: 200px;
    border-left: none;
    border-bottom: 4px solid transparent;
    text-align: center;
  }
  
  .pricing-tab-btn:hover {
    border-left-color: transparent;
    border-bottom-color: rgba(212, 175, 55, 0.4);
  }
  
  .pricing-tab-btn.active {
    border-left-color: transparent;
    border-bottom-color: var(--gold);
  }
  
  .pricing-tab-btn.active::after {
    display: none;
  }
  
  .pricing-tab-panel {
    padding: 2rem;
  }
  
  .price-amount {
    font-size: var(--text-4xl);
  }
  
  .pricing-content-title {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 480px) {
  .pricing-tabs-nav {
    padding: var(--space-2);
  }
  
  .pricing-tab-btn {
    min-width: 160px;
    padding: var(--space-4);
  }
  
  .tab-title {
    font-size: var(--text-base);
  }
  
  .tab-price {
    font-size: var(--text-base);
  }
  
  .pricing-tab-panel {
    padding: var(--space-6);
  }
  
  .price-amount {
    font-size: var(--text-3xl);
  }
  
  .pricing-content-title {
    font-size: var(--text-2xl);
  }
  
  .inclusions-list {
    gap: var(--space-3);
  }
  
  .inclusion-item {
    padding: 0.6rem 0.8rem;
    font-size: var(--text-xs);
  }
}

    @keyframes overlayPulse {
      0% { background-color: rgba(255,255,255,0.1); }
      50% { background-color: rgba(0,0,0,0.2); }
      100% { background-color: rgba(255,255,255,0.1); }
    }

    .hero-content {
      z-index: 3;
      padding: 2rem;
    }

 .hero-content h1 {
      font-size: var(--text-8xl);
      color: white;
      font-family: var(--font-display);
      font-optical-sizing: auto;
      font-weight:  800;
      font-style: normal;
    }

    .hero-content p {
      font-size: var(--text-xl);
      font-weight: 500;
      max-width: 800px;
      margin: 1rem auto;
      color: white;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .trip {
      background: var(--white);
      border-radius: var(--radius-button);
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0,0,0,0.07);
      position: relative;
      margin-bottom: 3rem;
    }

    .trip img {
      width: 100%;
      height: auto;
      max-height: 30rem;
      object-fit: cover;
    }

    .trip-text {
      padding: 2rem;
    }

    .trip-title {
      font-size: var(--text-4xl);
      font-weight: var(--weight-bold) !important;
      font-family: var(--font-display) !important;
      font-optical-sizing: auto;
      font-weight:  400;
      margin-bottom: 2rem;
      margin-top: 5rem;
    }

    .trip-sub {
      font-style: italic;
      color: var(--color-neutral-600);
    }


    .invite-section {
      padding: 5rem 2rem;
      text-align: center;
    }

    .footer a {
      color: var(--gold);
      font-weight: bold;
      text-underline-offset: 9px;
    }


    .footer h3 {
      color: var(--gold);
    }

    .social-icons a {
      color: var(--platinum);
      margin: 0 0.5rem;
      font-size: var(--text-xl);
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: var(--gold);
    }

/* Duplicate removed - consolidated in section 10 */

/* Subtle gradient variations for itinerary cards */
.itinerary-gradient-1 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.itinerary-gradient-2 {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.itinerary-gradient-3 {
  background: linear-gradient(135deg, #f8f8ff 0%, #e8e8f0 100%);
}

.itinerary-gradient-4 {
  background: linear-gradient(135deg, #fafafa 0%, #f1f8e9 100%);
}

.itinerary-gradient-5 {
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e4e2 100%);
}

.itinerary-gradient-6 {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.itinerary-gradient-7 {
  background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
}

.itinerary-gradient-8 {
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
}

.itinerary-gradient-9 {
  background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
}

.itinerary-gradient-10 {
  background: linear-gradient(135deg, #f9f9f9 0%, #e0e0e0 100%);
}

/* Hotel star rating styling */
.hotel-star-rating {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f6f0 0%, #ede4d3 100%);
  border: 1px solid #d4af37;
  border-radius: var(--radius-media);
  padding: 4px 8px;
  font-size: var(--text-sm);
  margin-left: 0.5rem;
  box-shadow: 0 2px 4px rgba(212, 175, 55, 0.15);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: help;
}

.hotel-star-rating:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, #f5f3ed 0%, #e8dcc7 100%);
}

.hotel-star-rating .star-label {
  color: #8b7355;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-left: 4px;
  letter-spacing: 0.3px;
}

.hotel-star-rating::before {
  content: '';
  color: var(--color-primary);
  font-size: var(--text-base);
  margin-right: 2px;
}

/* Individual star styling */
.hotel-star-rating {
  color: var(--color-primary);
  font-size: var(--text-base);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Duplicate removed - consolidated in section 10 */

/* Duplicate mobile rules removed - consolidated in section 10 */



@media (max-width: 480px) {
  
  .btn-base {
    padding: 0.8rem 1.2rem;
    font-size: var(--text-sm);
    min-height: 44px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
  
  .footer-link {
    padding: var(--space-2);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}



.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-3xl);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem !important;
  margin-bottom: 2rem !important;
}

.footer-link {
  color: var(--platinum);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-3xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: transparent;
}

.footer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(245, 232, 200, 0.1) 100%);
  border-radius: var(--radius-3xl);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.footer-link:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Mobile Responsive for Footer Links */
@media (max-width: 768px) {
  .footer-links {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: var(--space-1);
    border-radius: var(--radius-2xl);
    margin: 1.5rem auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .footer-link {
    font-size: var(--text-sm);
    padding: 0.6rem 1rem;
    letter-spacing: 0;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  .footer-link::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(245, 232, 200, 0.05) 100%);
  }
  
  .footer-link:hover {
    transform: none;
    text-shadow: 0 1px 4px rgba(212, 175, 55, 0.2);
  }
  
  .footer-link:not(:last-child)::after {
    height: 16px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
}

@media (max-width: 480px) {
  .footer-links {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(5px);
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.02),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 0.2rem;
    border-radius: var(--radius-2xl);
    margin: 1rem auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  
  .footer-links::-webkit-scrollbar {
    display: none;
  }
  
  .footer-link {
    font-size: var(--text-sm);
    padding: 0.5rem 0.8rem;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: fit-content;
  }
  
  /* Icon spacing optimization for mobile */
  .footer-link i {
    font-size: var(--text-sm);
    display: inline-block;
    width: 1rem;
    text-align: center;
  }
  
  .footer-link::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(245, 232, 200, 0.03) 100%);
  }
  
  .footer-link:hover {
    text-shadow: 0 1px 2px rgba(212, 175, 55, 0.15);
  }
  
  .footer-link:not(:last-child)::after {
    height: 12px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
  }
}



/* Mobile Space Optimization */
@media (max-width: 768px) {
  
  
  /* Trip header optimization */
  .trip-header-row {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  
  /* Content sections optimization */
  .trip-content-section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  /* Itinerary grid optimization */
  .itinerary-grid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: var(--space-4);
  }
  
  /* FAQ section optimization */
  .faq-section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  /* Card and section optimizations */
  .card, .section-card {
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius-xl);
  }
  
  /* Hero media grid optimization */
  .hero-media-grid {
    margin-left: 0rem;
    margin-right: -0.75rem;
    border-radius: 0;
  }
  
  /* Thumbnail grid spacing */
  .hero-thumbnails {
    padding: var(--space-2);
    gap: 0.5rem;
  }
  
  /* Button optimizations */
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: none;
    margin-bottom: var(--space-2);
  }
}

@media (max-width: 480px) {
  
  .trip-header-row {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  /* Minimize all content padding */
  .trip-content-section,
  .faq-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  /* Itinerary cards full width - consolidated with main responsive rules */
  .itinerary-grid {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    gap: 0.75rem;
  }
  
  /* Hero section edge-to-edge */
  .hero-media-grid {
    margin-left: 0rem;
    margin-right: -0.5rem;
  }
  
  /* Typography adjustments for space */
  .section-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
    margin-bottom: 0.75rem;
  }
}

/* Reshuffle Button Styles */
.reshuffle-btn {
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  max-width: 160px !important;
  z-index: 1000;
}

.reshuffle-btn:hover {
  transform: translateY(-2px) rotate(2deg);
  box-shadow: 0 6px 20px rgba(184, 156, 29, 0.3);
  background: linear-gradient(135deg, #f8ebd1 0%, #c4a821 100%);
}

.reshuffle-btn:active {
  transform: translateY(0) rotate(-1deg);
  box-shadow: 0 2px 10px rgba(184, 156, 29, 0.4);
}

.reshuffle-btn i {
  font-size: var(--text-xl);
  transition: transform 0.3s ease;
}

.reshuffle-btn:hover i {
  transform: rotate(180deg);
}

.reshuffle-text {
  font-weight: 700;
  margin-left: var(--space-2);
}

/* Fun ripple effect on click */
.reshuffle-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.reshuffle-btn:active::before {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
}

.reshuffle-btn * {
  position: relative;
  z-index: 1000;
}

/* Shuffle animation for Polaroid photos */
.highlight-experience.shuffling {
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center center;
  z-index: 10;
}

.highlight-experience.shuffling:hover {
  transform: scale(1.1) !important;
  z-index: 15;
}

/* Mobile responsive for reshuffle button */
@media (max-width: 768px) {
  .reshuffle-btn {
    display: none !important;
  }
}

/* Map Section Styles */
.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.map-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.map-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.map-legends-wrapper {
  background: transparent;
  border-radius: 0;
  padding: 2rem;
  box-shadow: none;
  border: none;
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
}

.map-legends-title {
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5rem;
  position: relative;
}

/* Multi-lap container styles */
#map-laps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-lap-section {
  position: relative;
}

.map-lap-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  position: relative;
}



.map-legends-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding: 1rem 0;
}

/* Timeline vertical line */
.map-legends-list::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--gold) 0%,
    var(--gold) 30%,
    transparent 30%,
    transparent 50%,
    var(--gold) 50%,
    var(--gold) 80%,
    transparent 80%,
    transparent 100%
  );
  background-size: 100% 20px;
  z-index: 1;
}

.map-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0.75rem;
  border-radius: 0;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.map-legend-item:hover .map-legend-icon {
  transform: scale(1.5);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.map-legend-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  z-index: 3;
}

.map-legend-text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
}

.map-legend-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Mobile responsive design for map section */
@media (max-width: 992px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-legends-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  /* Timeline vertical line */
.map-legends-list::before {
  left: 17px;
}
  .map-container {
    gap: 1.5rem;
  }
  
  .map-legends-wrapper {
    padding: var(--space-6);
  }
  
  .map-legends-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
  }
  
  .map-legend-item {
    padding: var(--space-2);
    gap: 0.75rem;
  }
  
  .map-legend-icon {
    width: 20px;
    height: 20px;
    font-size: var(--text-sm);
  }
  
  .map-legend-text {
    font-size: var(--text-sm);
  }
  
  .map-legend-description {
    font-size: var(--text-sm);
  }
}

/* Parallax Video Section */
.parallax-video-effect-home-page {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.parallax-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.parallax-video-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  color: white;
}

.parallax-video-title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.parallax-video-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

/* Parallax scroll effect */
@media (prefers-reduced-motion: no-preference) {
  .parallax-video {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Mobile responsive design */
@media (max-width: 768px) {
  .parallax-video-effect-home-page {
    height: 70vh;
    min-height: 500px;
  }
  
  .parallax-video-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
  }
  
  .parallax-video-subtitle {
    font-size: var(--text-lg);
    padding: var(--space-0) var(--space-4);
  }
}

@media (max-width: 480px) {
  .parallax-video-effect-home-page {
    height: 60vh;
    min-height: 400px;
  }
  
  .parallax-video-title {
    font-size: var(--text-3xl);
  }
  
  .parallax-video-subtitle {
    font-size: var(--text-base);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .parallax-video {
    transform: translate(-50%, -50%) scale(1) !important;
    transition: none !important;
  }
}

/* =====================================
   9. MODALS & OVERLAYS
   ===================================== */

/* YouTube Video Popup Modal */
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  overflow-y: auto;
  padding: 2rem;
}

.video-popup-overlay.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.video-popup-container {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.video-popup-overlay.show .video-popup-container {
  transform: scale(1);
}

.video-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-popup-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  margin: 0;
}

.video-popup-close {
  background: rgba(13, 27, 42, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: var(--text-lg);
  cursor: pointer;
  color: var(--black);
  transition: all 0.3s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-popup-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  color: #0d1b2a;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.video-popup-close:active {
  transform: scale(0.95);
}

.video-popup-content {
  padding: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-popup-description {
  padding: 1.5rem 2rem 2rem;
  background: white;
}

.video-popup-description p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: var(--text-base);
}

/* Video trigger overlay on trip image */
.video-trigger-container {
  position: relative;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

.video-trigger-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: 1;
}

.video-trigger-container:hover::before {
  opacity: 1;
}

.video-trigger-container:hover {
  transform: scale(1.02);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-button i {
  font-size: var(--text-3xl);
  color: var(--gold);
  margin-left: 4px; /* Slight offset for visual centering */
}

.video-trigger-container:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.video-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 3;
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.video-trigger-container:hover .video-overlay-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Mobile responsive design for popup */
@media (max-width: 768px) {
  .video-popup-overlay {
    padding: var(--space-4);
  }
  
  .video-popup-container {
    max-height: 95vh;
    border-radius: var(--radius-media);
  }
  
  .video-popup-header {
    padding: 1rem 1.5rem;
  }
  
  .video-popup-title {
    font-size: var(--text-xl);
  }
  
  .video-popup-description {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  /* Mobile responsive for video trigger */
  .video-play-button {
    width: 60px;
    height: 60px;
  }
  
  .video-play-button i {
    font-size: var(--text-2xl);
  }
  
  .video-overlay-text {
    bottom: 15px;
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
  }
}

@media (max-width: 480px) {
  .video-popup-overlay {
    padding: var(--space-2);
  }
  
  .video-popup-container {
    border-radius: var(--radius-md);
  }
  
  .video-popup-header {
    padding: 0.75rem 1rem;
  }
  
  .video-popup-title {
    font-size: var(--text-lg);
  }
  
  .video-popup-close {
    width: 35px;
    height: 35px;
    font-size: var(--text-2xl);
  }
}

