/* =========================================================
   1. GLOBAL RESETS & BASE STYLES
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Only hide horizontal overflow */
}

.hidden {
  display: none !important;
}

/* =========================================================
   2. HEADER & NAVIGATION
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #012c60;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

.desktop-nav {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex: 1;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a:hover {
  color: #cce5ff;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.badge-trending {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.icon {
  width: 20px;
  height: 20px;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #012c60;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

#myAccountLink {
  text-decoration: none;
}

.profile-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.search-box {
  position: absolute;
  top: 75px;
  right: 20px;
  background: white;
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  width: 300px;
  max-width: calc(100% - 40px); /* Prevents overflow on mobile */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box input {
  flex: 1;
  outline: none;
  border: none;
  color: #012c60;
  width: 100%;
}

.search-box button {
  background: #014f8c;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.mobile-menu {
  background: #012c60;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: white;
  padding: 8px 0;
  text-decoration: none;
}

/* SECOND ROW */
.second-row {
  background: #012c60;
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.second-row::-webkit-scrollbar { display: none; }

.scroll-x {
  display: flex;
  gap: 20px;
  padding: 6px;
}

.scroll-x a {
  color: white;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.scroll-x a:hover {
  color: #ffdf85;
  text-decoration: underline;
}

/* LOCATION ROW */
.location-row {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  padding: 5px 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}
.location-row::-webkit-scrollbar { display: none; }

.location-row .loc-btn {
  display: inline-block;
  background: #fff7dc;
  color: #012c70;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
}

.location-row .loc-btn:hover {
  background: #ffe3a3;
  color: #014f8c;
}

/* FLIPPING BANNER */
.flip-banner {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#flipText {
  font-size: clamp(11px, 2.5vw, 13px);
  font-weight: bold;
  color: #012c60;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}

/* HEADER RESPONSIVE */
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-only { display: flex; }
  .lbl { display: none; }
  .scroll-x { justify-content: flex-start; }
  .scroll-x a { font-size: 13px; padding: 0 6px; }
  .location-row { justify-content: flex-start; padding: 4px 8px; }
  .location-row .loc-btn { font-size: 11px; padding: 2px 6px; }
}
@media (min-width: 769px) {
  .scroll-x { justify-content: center; }
  .location-row { justify-content: center; flex-wrap: wrap; }
}

/* =========================================================
   3. ZOOM PARALLAX GSAP CONTAINER & GLOW
   ========================================================= */
.page-content {
  padding-top: 140px; 
  background: #111; 
}

.zoom-parallax-container {
  position: relative;
  height: 300vh; 
}

.zoom-sticky-wrapper {
  position: sticky;
  top: 140px; 
  height: calc(100vh - 140px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vmin;
  height: 100vmin;
  background: radial-gradient(ellipse at center, rgba(226, 174, 63, 0.15), transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   4. INTRO & FINAL OVERLAY (TYPOGRAPHY & BUTTONS)
   ========================================================= */
/* Initial Intro Overlay */
.zoom-initial-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 40; 
  text-align: center;
  pointer-events: none;
  padding: 0 20px;
}

.intro-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0px 4px 20px rgba(0,0,0,0.6);
  letter-spacing: -1px;
}

.intro-title span {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Adds a dark glow behind the golden text to separate it from bright images */
  filter: drop-shadow(0px 2px 10px rgba(0,0,0,0.8)); 
}

.intro-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #eaeaea;
  /* UPDATED: Stronger shadow and slightly thicker font weight */
  font-weight: 400; 
  text-shadow: 0px 4px 15px rgba(0,0,0,0.9), 0px 2px 5px rgba(0,0,0,1);
  letter-spacing: 1px;
}

/* UPDATED: Turned into a beautiful dark glass pill */
.scroll-prompt {
  position: absolute;
  bottom: clamp(10vh, 15vh, 20vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  
  /* Glassmorphism Styles */
  background: rgba(15, 23, 42, 0.65); /* Dark slate background */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  pointer-events: auto; /* Allows the pill to be clicked if you add a link to it */
}

.chevron-down {
  animation: bounce 2s infinite ease-in-out;
  color: #ffc107;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Final Title Overlay */
.zoom-title-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.8) 100%);
  opacity: 0; 
  pointer-events: none; 
  padding: 0 20px;
}

.final-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.hero-title {
  line-height: 1.1;
  margin-top: clamp(30px, 5vh, 60px);
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  /* UPDATED Shadow */
  text-shadow: 0px 5px 25px rgba(0,0,0,0.9), 0px 2px 5px rgba(0,0,0,1);
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-weight: 500;
  margin-top: clamp(8px, 1.5vh, 12px);
  color: #f4c36f; 
  text-shadow: 0px 2px 10px rgba(0,0,0,0.8);
}

.hero-description {
  font-size: clamp(14px, 2vw, 18px) !important;
  max-width: 900px;
  margin: clamp(12px, 2vh, 16px) auto clamp(16px, 3vh, 24px);
  font-weight: 400;
  color: white;
  line-height: 1.5;
  /* UPDATED: Added shadow to description text */
  text-shadow: 0px 2px 10px rgba(0,0,0,0.9);
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(24px, 4vh, 32px);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(12px, 1.5vw, 15px);
  /* UPDATED Shadow */
  text-shadow: 0px 2px 8px rgba(0,0,0,0.9);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon.accent { color: #ffc107; }

/* Buttons Responsive */
.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: clamp(24px, 5vh, 40px);
  flex-wrap: wrap; 
}

.btn {
  padding: 12px 32px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: auto;
}

.btn-primary {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  /* Ensure the text is readable over background */
  text-shadow: 0px 2px 5px rgba(0,0,0,0.8); 
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* =========================================
   HERO "VALUE TICKET" (PRICE & CHECKLIST)
   ========================================= */
.hero-price-value-card {
  display: inline-flex;
  align-items: center;
  /* Darker background to make the gold/white text pop */
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.85), rgba(0, 0, 0, 0.95)); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px 40px;
  margin: 10px auto 30px;
  text-align: left;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-in 0.8s backwards;
}

/* Left Side: Price */
.price-side {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.price-side:hover {
  transform: scale(1.05);
}

.price-label {
  font-size: 14px;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
}

/* The glowing yellow badge */
.all-inclusive-highlight {
  background-color: #ffc107;
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.5); /* The golden glow */
}

/* Big bold gold price */
.price-amount {
  font-size: 56px;
  font-weight: 900;
  color: #ffc107; /* Solid gold */
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 15px rgba(255, 193, 7, 0.25);
}

.price-per {
  font-size: 15px;
  color: #b0b0b0; /* Light gray */
  margin: 5px 0 0 0;
  font-weight: 400;
}

/* Middle Divider */
.ticket-divider {
  width: 1px;
  height: auto;           /* Let it grow automatically */
  align-self: stretch;    /* Stretches to match the tall checklist */
  min-height: 120px;
  background: rgba(255, 255, 255, 0.15);
  margin: 10px 0;         /* Adds a little breathing room at top and bottom */
}

/* Right Side: Checklist */
.value-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.value-list li {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.value-list li i {
  color: #ffc107; /* Golden checkmarks */
  font-size: 16px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .hero-price-value-card {
    flex-direction: column;
    gap: 20px;
    padding: 25px 30px;
  }
  
  .ticket-divider {
    width: 100%;
    height: 1px;
  }
  
  .value-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .price-amount {
    font-size: 48px;
  }
}
/* =========================================================
   5. GSAP IMAGE GRID (MASONRY)
   ========================================================= */
.zoom-motion-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.zoom-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 0px; 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  will-change: transform;
}

.zoom-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop Grid */
.box-0 { width: 100vw; height: 100vh; top: 0; left: 0; }
.box-1 { width: 125vw; height: 100vh; top: -117.5vh; left: 0; }
.box-2 { width: 108vw; height: 240vh; top: -45vh; left: -135vw; }
.box-3 { width: 120vw; height: 100vh; top: -12.5vh; left: 127.5vw; }
.box-4 { width: 156vw; height: 108vh; top: 135vh; left: -111vw; }
.box-5 { width: 160vw; height: 176vh; top: 196vh; left: 44vw; }
.box-6 { width: 126vw; height: 144vh; top: 148.5vh; left: 211.5vw; }

/* Mobile Grid Adaptation (< 768px) */
@media (max-width: 768px) {
  .box-0 { width: 100vw; height: 100vh; }
  .box-1 { width: 150vw; height: 80vh; top: -110vh; left: 0; }
  .box-4 { width: 150vw; height: 100vh; top: 120vh; left: -80vw; }
  .box-5 { width: 150vw; height: 100vh; top: 120vh; left: 80vw; }
  
  /* Hide the far edge images to keep mobile clean */
  .box-2, .box-3, .box-6 { display: none; } 
}

.parallax-spacer {
  height: 20vh;
  background: #111; 
}

/* =========================================================
   6. FOOTER
   ========================================================= */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png') no-repeat center center;
  background-size: cover;
  background-color: #012c60; 
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 0px;
}

.footer-logo {
  position: relative;
  padding: 10px;
  width: 140px;
  height: auto;
  margin: 0 auto;
  font-weight: bold;
  margin-top: 40px;
}

.footer-logo img {
  width: 240%;
  height: auto;
  margin-top: -300px !important;
  margin-left: -80px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: -5px !important;
}

.footer-social a { color: white; transition: color 0.3s ease; }
.footer-social a:hover { color: #f4c36f; }

.footer-content {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
}

.footer p a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer p a:hover { color: #f4c36f; text-decoration: underline; }

.payment-box {
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 10px 0;
  text-align: center;
  box-sizing: border-box;
  min-height: 60px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.inline-payment-icons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 0 10px;
}

.inline-payment-icons img {
  height: clamp(35px, 5vw, 58px); /* Responsive Payment Icons */
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.inline-payment-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px;
    font-size: 14px;
  }
  .footer-logo { margin-top: 40px; }
  .footer-social { font-size: 1.2rem; }
  .footer-content { font-size: 13px; margin-top: 20px; line-height: 1.5; }
}
/* =========================================================
   7. JOURNEY HIGHLIGHTS - 3D CIRCULAR GALLERY
   ========================================================= */
.journey-highlights-section {
  position: relative;
  height: 300vh; /* Scroll length */
  background-color: #02050a; 
  background-image: 
    linear-gradient(to bottom, rgba(2, 5, 10, 1) 0%, rgba(2, 5, 10, 0.75) 20%, rgba(2, 5, 10, 0.75) 80%, rgba(2, 5, 10, 1) 100%),
    url('../images/bg-image.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  /* overflow: hidden; WAS DELETED HERE SO STICKY SCROLL WORKS! */
}

/* Subtle radial glow BEHIND the 3D gallery */
.journey-highlights-section::before {
  content: '';
  position: absolute;
  /* Inset: 0 perfectly contains the glow inside the section without breaking sticky */
  top: 0; left: 0; right: 0; bottom: 0; 
  background: radial-gradient(circle at center, rgba(226, 174, 63, 0.08) 0%, rgba(1, 44, 96, 0.15) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1; 
}

/* Very subtle texture overlay */
.journey-highlights-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 2;
}

.jh-sticky-wrapper {
  position: sticky;
  top: 140px; 
  height: calc(100vh - 140px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* It is safe to put overflow hidden HERE on the wrapper */
  z-index: 10; 
}

/* Base styles (Mobile First) */
.jh-header {
  position: absolute;
  top: 20px; /* Fixed spacing from the top of the wrapper, stops it from hitting the yellow bar */
  text-align: center;
  z-index: 10;
  width: 100%;
  padding: 0 15px;
  pointer-events: none; 
}

.jh-header h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem; /* Scaled down for mobile */
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 5px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.jh-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* 3D Stage Setup */
.gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px; /* Flatter perspective prevents clipping on small phones */
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y; 
}

.gallery-rotator {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  cursor: grab; 
}
.gallery-rotator:active { cursor: grabbing; }

/* Individual Cards - Mobile Size */
.gallery-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px; /* Slimmer on mobile to prevent overlapping */
  height: 220px;
  will-change: transform, opacity;
  user-select: none; 
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.card-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; 
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  text-align: left;
}

.card-content h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2px;
}

.card-content em {
  font-size: 0.75rem;
  color: #f4c36f;
  font-style: normal;
}
/* Fix anchor tag behavior and add hover effect */
a.card-inner {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

/* Brightens the border and pushes the card slightly toward the user on hover */
a.card-inner:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
  border-color: rgba(255, 193, 7, 0.6);
}

/* =======================================
   MEDIA QUERIES FOR LARGER SCREENS
   ======================================= */

/* Tablet & Small Laptops (768px and up) */
@media (min-width: 768px) {
  .jh-header { top: 30px; }
  .jh-header h2 { font-size: 2.8rem; }
  .jh-header p { font-size: 1rem; }
  
  .gallery-container { perspective: 1200px; }
  
  .gallery-card {
    width: 200px;
    height: 300px;
  }
  .card-content { padding: 16px; }
  .card-content h3 { font-size: 1.1rem; }
  .card-content em { font-size: 0.85rem; }
}

/* Standard Laptops & Desktops (1024px and up) */
@media (min-width: 1024px) {
  .jh-header { top: 40px; }
  .jh-header h2 { font-size: 3.5rem; }
  .jh-header p { font-size: 1.1rem; }
  
  .gallery-container { perspective: 1500px; }
  
  .gallery-card {
    width: 260px;
    height: 380px;
    border-radius: 16px;
  }
  .card-content { padding: 20px; }
  .card-content h3 { font-size: 1.3rem; }
  .card-content em { font-size: 0.9rem; }
}

/* Large Monitors (1440px and up) */
@media (min-width: 1440px) {
  .gallery-container { perspective: 2000px; }
  
  .gallery-card {
    width: 300px;
    height: 420px;
  }
  .card-content h3 { font-size: 1.4rem; }
}

/* =====================================================================
   8. ITINERARY SECTION (DARK PREMIUM THEME)
   ===================================================================== */
.itinerary-section {
  position: relative; /* REQUIRED for the canvas absolute positioning */
  overflow: hidden; /* Prevent canvas drawing outside the box */
  padding: 4rem 20px;
  background-color: #020617; /* Very dark background to make beams glow */
  color: #f8f9fa;
}

/* Canvas Background */
.beams-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: blur(15px);
  z-index: 0;
}

/* Background Blurring Overlay */
.beams-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px); /* For Safari */
  z-index: 1;
  animation: pulse-overlay 10s ease-in-out infinite;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.itisection-header {
  text-align: center;
  margin-bottom: 3rem;
}

.itisection-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.itisection-subtitle {
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

.itinerary-section-line {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(to right, #f0c987, #e27d60);
  margin: 1rem auto 0;
  border-radius: 4px;
}

/* Accordion Cards */
.iti-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all .25s ease;
}
.iti-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  border-color: rgba(226, 174, 63, 0.3);
}

.iti-header {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background .2s ease;
}
.iti-header:hover { background: rgba(255, 255, 255, 0.05); }

.iti-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f0c987, #e27d60);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.iti-header:hover .iti-badge { transform: scale(1.1); }

.iti-header-text { flex: 1; }
.iti-header-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px;
}
.iti-theme {
  font-style: italic;
  color: #f4c36f;
  font-size: .9rem;
  margin: 0 0 8px;
}

.iti-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.iti-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}
.iti-chip .fa { color: #f4c36f; font-size: .72rem; }

.iti-chevron {
  flex-shrink: 0;
  color: #e2ae3f;
  transition: transform .28s ease;
}
.iti-header.open .iti-chevron { transform: rotate(180deg); }

/* Accordion Body */
.iti-body {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  padding: 28px 24px;
  gap: 32px;
}
.iti-body.open { display: grid; grid-template-columns: 1fr; }

.iti-narrative p {
  font-size: .95rem;
  color: #cbd5e1;
  line-height: 1.85;
  margin: 0 0 14px;
}

.iti-highlight {
  background: rgba(226, 174, 63, 0.1);
  border-left: 4px solid #f0c987;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: .875rem;
  color: #f8f9fa;
  margin-bottom: 20px;
}

/* =====================================================================
   TIMELINE (PREMIUM DARK THEME)
   ===================================================================== */
.iti-timeline {
  margin-top: 25px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

/* The vertical connecting line */
.iti-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 0; /* Let it run all the way down */
  width: 2px;
  background: linear-gradient(to bottom, #e2ae3f 0%, rgba(226, 174, 63, 0.4) 80%, transparent 100%);
}

.iti-tl-item { 
  position: relative; 
  padding-bottom: 24px; 
}

.iti-tl-item:last-child {
  padding-bottom: 0; /* Removes extra space at the bottom */
}

/* The hollow timeline dots/rings */
.iti-tl-item::before {
  content: '';
  position: absolute;
  left: -25px; /* Aligns perfectly with the line */
  top: 4px;
  width: 10px;
  height: 10px;
  background: #020617; /* Dark center to create a "ring" effect */
  border: 2px solid #e2ae3f; /* Gold border */
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(226, 174, 63, 0.15); /* Soft outer glow */
}

.iti-tl-time { 
  font-size: 0.75rem; 
  font-weight: 700; 
  color: #f4c36f; /* Bright gold for visibility */
  text-transform: uppercase; 
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.iti-tl-title { 
  font-size: 1.05rem; 
  font-weight: 600; 
  color: #ffffff; 
  margin-bottom: 4px;
}

.iti-tl-desc { 
  font-size: 0.85rem; 
  color: #94a3b8; 
  line-height: 1.5;
  margin: 0;
}

/* Hotel Cards */
.iti-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.iti-hotel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.iti-hotel-header {
  background: #020617;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.iti-hotel-header .fa { color: #e2ae3f; }
.iti-hotel-body { padding: 12px 16px; }
.iti-hotel-sub { font-size: .75rem; color: #94a3b8; margin-bottom: 10px; }
.iti-hotel-list { list-style: none; padding: 0; margin: 0; }
.iti-hotel-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: .85rem;
  color: #cbd5e1;
}
.iti-hotel-list li:last-child { border-bottom: none; }
.iti-stars { color: #e2ae3f; font-size: .65rem; margin-top: 2px; }

.iti-tip {
  background: rgba(226, 174, 63, 0.05);
  border-left: 3px solid #e2ae3f;
  border-radius: 8px;
  padding: 12px 14px;
}
.iti-tip-label { font-size: .7rem; font-weight: 700; color: #f4c36f; text-transform: uppercase; margin-bottom: 5px; }
.iti-tip p { font-size: .81rem; color: #cbd5e1; margin: 0; }

@keyframes pulse-overlay {
  0%, 100% { opacity: 0.05; }
  50% { opacity: 0.15; }
}

/* Elevates the itinerary content above the canvas */
.relative-z {
  position: relative;
  z-index: 10;
}

/* Itinerary Responsive */
@media (max-width: 480px) {
  .iti-header { padding: 16px 14px; gap: 12px; }
  .iti-badge { width: 38px; height: 38px; font-size: 1rem; }
  .iti-header-text h3 { font-size: 1.1rem; }
  .iti-body { padding: 18px 14px 22px; }
  .iti-narrative p { font-size: 0.9rem; margin-bottom: 12px; }
  .iti-timeline { padding-left: 22px; }
}
@media (min-width: 640px) and (max-width: 900px) {
  .iti-aside { flex-direction: row; flex-wrap: wrap; }
  .iti-hotel-card, .iti-tip { flex: 1 1 calc(50% - 8px); min-width: 260px; }
}
@media (min-width: 900px) {
  .iti-body.open { grid-template-columns: 1fr 300px; }
  .iti-aside { margin-top: 0; padding-top: 0; border-top: none; }
}

/* =====================================================================
   9. MAP SECTION (DARK TO MATCH FLOW)
   ===================================================================== */
.tour-map-section {
  padding: 40px 20px;
  background-color: #0f172a; 
  text-align: center;
}
.mapsection-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 25px;
  font-weight: 700;
  color: #ffffff;
  font-family: Georgia, serif;
}
#tourMap {
  position: relative; /* CRITICAL for Leaflet inside sections */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* =====================================================================
   10. WHY APRIL IS PERFECT
   ===================================================================== */
.why-march-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(2, 5, 10, 0.85)),
    url('https://dxk1acp76n912.cloudfront.net/images/cult.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}
.whysection-header { text-align: center; margin-bottom: 50px; }
.whysection-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.whysection-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #e2ae3f 0%, #f4c36f 100%);
  margin: 0 auto;
  border-radius: 2px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(226, 174, 63, 0.2);
  color: white;
  transition: transform 0.3s ease;
}
.benefit-card:hover { transform: translateY(-10px); border-color: #f4c36f; }
.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2ae3f 0%, #f4c36f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}
.benefit-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.benefit-description { color: #cbd5e1; font-size: 15px; line-height: 1.6; }

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefit-card {
    padding: 24px 16px;
  }
}

/* =====================================================================
   11. HOTELS SECTION (GEOMETRIC DARK THEME)
   ===================================================================== */
.hotel-assist-cta {
  position: relative;
  overflow: hidden; /* Keeps floating shapes contained */
  padding: 80px 20px;
  background-color: #030303; /* Deep black background */
}

/* Ambient glow behind shapes */
.hotel-bg-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), transparent, rgba(244, 63, 94, 0.05));
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* Z-index utility to keep content clickable */
.relative-z {
  position: relative;
  z-index: 10;
}

/* Text Colors for Dark Mode */
.hotel-assist-container { max-width: 900px; margin: 0 auto; text-align: center; }
.hotel-assist-title { 
  font-size: 2.2rem; 
  font-weight: 700; 
  margin-bottom: 14px; 
  text-transform: uppercase; 
  color: #ffffff; /* Changed to White */
}
.hotel-assist-text { 
  max-width: 680px; 
  margin: 0 auto 36px; 
  font-size: 1.05rem; 
  color: #cbd5e1; /* Changed to light slate */
  line-height: 1.6; 
}

/* The Javascript outputs a heading inside .district-hotels. We need it to be bright so it's readable. */
.partnered-hotels {
  font-size: 20px;
  color: #f4c36f !important; /* Made it Gold for dark mode */
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
  margin-top: 40px;
}

/* --- GEOMETRIC SHAPES CSS --- */
.shape-wrapper { position: absolute; pointer-events: none; z-index: 1; }

.shape-1 { width: 600px; height: 140px; left: -5%; top: 20%; transform: rotate(12deg); }
.shape-2 { width: 500px; height: 120px; right: -2%; top: 70%; transform: rotate(-15deg); }
.shape-3 { width: 300px; height: 80px; left: 10%; bottom: 5%; transform: rotate(-8deg); }
.shape-4 { width: 200px; height: 60px; right: 20%; top: 15%; transform: rotate(20deg); }
.shape-5 { width: 150px; height: 40px; left: 25%; top: 10%; transform: rotate(-25deg); }

.shape-floater { width: 100%; height: 100%; animation: floatShape 12s ease-in-out infinite; }
.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: -2s; }
.delay-3 { animation-delay: -4s; }
.delay-4 { animation-delay: -6s; }
.delay-5 { animation-delay: -8s; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.elegant-shape {
  width: 100%; height: 100%; border-radius: 9999px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}
.elegant-shape::after {
  content: ''; position: absolute; inset: 0; border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
}

.gradient-indigo { background: linear-gradient(to right, rgba(99, 102, 241, 0.15), transparent); }
.gradient-rose { background: linear-gradient(to right, rgba(244, 63, 94, 0.15), transparent); }
.gradient-violet { background: linear-gradient(to right, rgba(139, 92, 246, 0.15), transparent); }
.gradient-amber { background: linear-gradient(to right, rgba(245, 158, 11, 0.15), transparent); }
.gradient-cyan { background: linear-gradient(to right, rgba(6, 182, 212, 0.15), transparent); }

@media (max-width: 768px) {
  .shape-1 { width: 350px; height: 80px; left: -10%; top: 15%; }
  .shape-2 { width: 300px; height: 70px; right: -10%; top: 80%; }
  .shape-3 { width: 200px; height: 50px; left: 5%; bottom: 5%; }
  .shape-4 { width: 120px; height: 35px; right: 10%; top: 10%; }
  .shape-5 { display: none; }
}

/* Hotel Carousel */
.district-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.district-track { 
  position: relative; 
  height: 320px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.district-card {
  position: absolute;
  width: 100%;
  max-width: 400px;
  height: 260px;
  border-radius: 16px;
  /* Gradient overlay makes the white text pop */
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%), var(--img) center/cover;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  will-change: transform, opacity;
}

/* No rotateY used here, strictly flat scaling to match your image */
.district-card.active { 
  opacity: 1; 
  transform: translateX(0) scale(1); 
  z-index: 5; 
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.district-card.prev { 
  opacity: 0.8; 
  transform: translateX(-35%) scale(0.85); 
  z-index: 4; 
}
.district-card.next { 
  opacity: 0.8; 
  transform: translateX(35%) scale(0.85); 
  z-index: 4; 
}
.district-card.prev2 { 
  opacity: 0.4; 
  transform: translateX(-65%) scale(0.7); 
  z-index: 3; 
}
.district-card.next2 { 
  opacity: 0.4; 
  transform: translateX(65%) scale(0.7); 
  z-index: 3; 
}

/* Dots */
.district-dots { 
  display: flex; 
  justify-content: center; 
  gap: 10px; 
  margin-top: 10px; 
}

.dot { 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  background: #ccc; 
  cursor: pointer; 
  transition: 0.3s; 
}

.dot.active { 
  background: #012c60; 
  transform: scale(1.3); 
}

/* Partnered Hotels Grid below carousel */
/* Partnered Hotels Grid below carousel */
.district-hotels { 
  margin-top: 60px; 
  position: relative;
  z-index: 10; /* Ensures it stays above the floating background shapes */
}

.partnered-hotels { 
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px; 
  color: #f4c36f !important; /* Gold text to match the theme */
  font-weight: 700; 
  text-align: center; 
  text-transform: uppercase; 
  letter-spacing: 2px;
  margin-bottom: 25px; 
}

.hotels-grid {
  display: grid;
  /* Forces exactly 3 rows */
  grid-template-rows: repeat(3, 1fr);
  /* Tells the grid to add new columns instead of new rows */
  grid-auto-flow: column;
  /* Sets the width of the cards */
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  
  /* Enables smooth horizontal scrolling */
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px; /* Space for the custom scrollbar */
  scroll-behavior: smooth;
  
  /* Firefox Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 184, 96, 0.6) rgba(255, 255, 255, 0.05);
}

/* Custom Elegant Webkit Scrollbar (Chrome, Safari, Edge) */
.hotels-grid::-webkit-scrollbar {
  height: 8px;
}
.hotels-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.hotels-grid::-webkit-scrollbar-thumb {
  background: rgba(244, 184, 96, 0.5); /* Subtle gold */
  border-radius: 10px;
}
.hotels-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 184, 96, 0.9); /* Bright gold on hover */
}

/* Glassmorphism Hotel Cards */
.hotel-card {
  padding: 14px 16px; 
  background: rgba(255, 255, 255, 0.03); /* Subtle dark glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1); /* Thin elegant border */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
  color: #cbd5e1; /* Light slate/gray text so it isn't blindingly white */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-card h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Hover Effect: Slight lift and gold glow */
.hotel-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(226, 174, 63, 0.4); /* Subtle gold border */
  box-shadow: 0 10px 25px rgba(226, 174, 63, 0.15); /* Subtle gold glow */
  color: #ffffff; /* Brightens text on hover */
}
/* Mobile Responsiveness for Hotels */
@media (max-width: 768px) {
  .hotel-assist-cta { padding: 50px 15px; }
  .district-track { height: 250px; }
  .district-card { max-width: 280px; height: 200px; padding: 1rem; font-size: 1.3rem; }
  
  /* Shrink distance on mobile so cards stay on screen */
  .district-card.prev { transform: translateX(-30%) scale(0.85); }
  .district-card.next { transform: translateX(30%) scale(0.85); }
  .district-card.prev2, .district-card.next2 { display: none; } /* Hide outer cards on phones */
  .hotels-grid {
    grid-auto-columns: minmax(180px, 1fr); /* Slightly smaller cards on phones */
    gap: 10px;
    padding-bottom: 15px;
  }
}


@media (max-width: 480px) {
  .district-card { max-width: 240px; height: 180px; }
  .district-card.prev { transform: translateX(-25%) scale(0.85); }
  .district-card.next { transform: translateX(25%) scale(0.85); }
}

/* =====================================================================
   12. PRICING SECTION (VORTEX DARK THEME)
   ===================================================================== */
.pricing-section {
  position: relative;
  background-color: #000000; 
  padding: 80px 20px;
  color: #f8f9fa;
  overflow: hidden; /* Ensures particles don't spill out */
}

#vortexCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Lets users click through the particles */
  z-index: 0;
}

.pricing-container { 
  position: relative;
  z-index: 10; /* Keeps cards above the vortex */
  max-width: 1200px; 
  margin: auto; 
}

.pricing-header { text-align: center; margin-bottom: 50px; }
.pricing-header h2 { font-size: clamp(2.2rem, 5vw, 2.8rem); font-weight: 700; color: #ffffff; }
.pricing-header p { color: #cbd5e1; }
.pricing-line { width: 80px; height: 3px; background: linear-gradient(to right, #f4b860, #e07a5f); margin: 20px auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-bottom: 60px;
}

/* Glassmorphism Standard Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.pricing-card:hover { 
  transform: translateY(-8px); 
  border-color: rgba(244, 184, 96, 0.4);
}

/* Popular Card (Keeps its solid golden glow) */
.pricing-card.popular {
  background: linear-gradient(135deg, #f4b860, #e07a5f);
  color: #111;
  box-shadow: 0 20px 50px rgba(224, 122, 95, 0.3);
  transform: scale(1.05);
  border: none;
}
.pricing-card.popular:hover { transform: translateY(-8px) scale(1.05); }

.popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: #111; color: #fff; padding: 5px 15px;
  border-radius: 20px; font-size: 12px; font-weight: bold;
}

.card-header { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: bold;}
.room { margin: 12px 0; opacity: 0.8; font-size: 15px; color: inherit; }
.price { margin-top: 20px; }
.price span { font-size: 42px; font-weight: 700; }
.price small { opacity: 0.7; font-size: 16px; }

/* Buttons */
.btn-outline, .btn-gold {
  display: block; margin-top: 20px; padding: 12px;
  border-radius: 8px; text-align: center; font-weight: 600; text-decoration: none;
  transition: all 0.3s;
}
.btn-outline { 
  border: 2px solid rgba(255, 255, 255, 0.4); 
  color: #fff; 
}
.btn-outline:hover { 
  background: #fff; 
  color: #000; 
}
.btn-gold { background: #111; color: #f4b860; border: 2px solid #111; }
.btn-gold:hover { background: transparent; color: #111; }

/* Included Grid */
.included h3 { text-align: center; font-size: 2rem; margin-bottom: 30px; color: #fff; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.included-item {
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(8px);
  padding: 15px 20px 15px 45px;
  border-radius: 8px; 
  position: relative; 
  font-weight: 500;
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.05);
}
.included-item::before {
  content: '✔'; position: absolute; left: 18px; top: 15px;
  color: #f4b860; font-weight: bold;
}

@media (max-width: 768px) {
  
  /* 1. Force Choose Package into a 2-Column Grid (Added !important) */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px; 
  }

  /* 2. CRITICAL FIX: Allow cards to shrink and stop overflowing */
  .pricing-card {
    padding: 15px 10px; 
    min-width: 0; /* This stops the Grid Blowout! */
    overflow: hidden; 
  }

  /* Stop the Popular card from zooming and overlapping its neighbor on mobile */
  .pricing-card.popular {
    transform: none !important;
  }
  .pricing-card.popular:hover {
    transform: translateY(-4px) !important;
  }

  /* 3. Stack the icon and the title */
  .pricing-card .card-header {
    flex-direction: column; 
    gap: 4px;
    text-align: center;
  }

  .pricing-card .card-header svg {
    width: 16px;
    height: 16px;
  }

  .pricing-card .card-header h3 {
    font-size: 0.95rem; /* Slightly smaller title */
    margin: 0;
  }

  /* 4. Shrink room descriptions */
  .pricing-card .room {
    font-size: 0.75rem;
    margin: 4px 0;
    text-align: center;
    white-space: nowrap; /* Keeps text on one line if possible */
  }

  /* 5. Shrink the massive price text so it fits */
  .pricing-card .price {
    text-align: center;
    margin-top: 10px;
  }
  .pricing-card .price span {
    font-size: 1.4rem; 
  }
  .pricing-card .price small {
    font-size: 0.7rem;
    display: block; /* Drops 'per person' to the next line to save space */
  }

  /* 6. Make the buttons smaller and tighter */
  .pricing-card .btn-outline, 
  .pricing-card .btn-gold {
    padding: 8px;
    font-size: 0.75rem;
    margin-top: 10px;
  }

  /* 7. Shrink the "Best Value" golden badge */
  .popular-badge {
    font-size: 0.6rem;
    padding: 3px 6px;
    top: -8px;
    white-space: nowrap;
  }

  /* BONUS: Make the "What's Included" list 2 columns on mobile too! */
  .included-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .included-item {
    font-size: 0.75rem;
    padding: 10px 8px 10px 24px;
  }
  .included-item::before {
    left: 6px;
    top: 10px;
  }
}


/* =====================================================================
   13. DRIVERS SECTION (DARK GLASS THEME)
   ===================================================================== */
.driver-section { 
  padding: 80px 20px; 
  /* Smooth fade from the black Pricing section down into a deep slate */
  background: linear-gradient(to bottom, #000000 0%, #0f172a 100%); 
  text-align: center; 
  overflow: hidden; 
}
.driver-section h2 { font-size: clamp(2rem, 4vw, 2.5rem); color: #ffffff; margin-bottom: 40px; }

.carousel-container { position: relative; max-width: 1200px; margin: 0 auto; }
.carousel-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-behavior: smooth; padding: 60px 10px 20px;
  scrollbar-width: none; 
}
.carousel-track::-webkit-scrollbar { display: none; }

.driver-card {
  flex: 0 0 280px;
  /* Glassmorphism Card */
  background: rgba(255, 255, 255, 0.03); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  padding: 60px 20px 20px; position: relative;
  text-align: center; display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.driver-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 184, 96, 0.4);
}
.driver-image-wrapper {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 100px; border-radius: 50%;
  border: 4px solid #0f172a; box-shadow: 0 4px 15px rgba(0,0,0,0.5); overflow: hidden;
}
.driver-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Replaced the solid orange line with a glowing gradient */
.image-line { height: 3px; background: linear-gradient(to right, #f4b860, #e07a5f); margin: 16px auto; border-radius: 2px; width: 60px; }

.driver-heading { font-size: 1.3rem; font-weight: bold; color: #f4c36f; margin-bottom: 10px; }
.card-details { font-size: 0.95rem; color: #cbd5e1; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.card-details .rating { color: #f4b860; margin-bottom: 10px; font-size: 1.1rem; letter-spacing: 2px;}
.card-details strong { color: #ffffff; font-weight: 600; }

.btn1 {
  background: transparent; color: #f4c36f; padding: 10px 20px;
  border: 2px solid #f4c36f;
  border-radius: 6px; text-decoration: none; font-weight: 600; display: inline-block;
  transition: all 0.3s ease;
}
.btn1:hover { background: #f4c36f; color: #000; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.2);
  width: 45px; height: 45px; border-radius: 50%; cursor: pointer; z-index: 10; font-size: 18px;
  backdrop-filter: blur(4px); transition: all 0.3s ease;
}
.carousel-btn:hover { background: rgba(244, 184, 96, 0.8); color: #000; border-color: transparent; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* =====================================================================
   14. REVIEWS SECTION (DARK GLASS THEME)
   ===================================================================== */
.reviews { 
  padding: 80px 20px; 
  background: #0f172a; /* Seamless continuation from Drivers */
  font-family: 'Arial', sans-serif; 
}
.reviewsection-title { text-align: center; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; color: #ffffff; font-family: Georgia, serif; }
.reviews .subtitle { text-align: center; color: #cbd5e1; font-size: 1.1rem; line-height: 1.4; margin-bottom: 50px;}
.reviews .subtitle #last-updated { display: block; margin-bottom: 12px; color: #94a3b8; }
.reviews .subtitle .view-all {
  display: inline-block; text-decoration: none; color: #111; font-weight: bold;
  padding: 10px 24px; border-radius: 8px; font-size: 14px; margin-top: 10px;
  background: linear-gradient(135deg, #f4b860, #e07a5f);
  transition: transform 0.3s ease;
}
.reviews .subtitle .view-all:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(244, 184, 96, 0.3); }

.carousel-wrapper { position: relative; overflow: hidden; max-width: 1200px; margin: 0 auto; }
.review-carousel { display: flex; transition: transform 0.4s ease-in-out; gap: 20px; padding: 20px 0;}

.review-card {
  background: rgba(255, 255, 255, 0.03); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; display: flex;
  min-width: 300px; max-width: 700px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); flex-shrink: 0;
}
.review-content { padding: 30px; flex: 1; width: 500px; }

/* Adjusted Tripadvisor Logo for Dark Mode */
.tripadvisor-logo { width: 120px; margin-bottom: 15px; filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5)); }

/* 2. CRITICAL FIX: Positions the Review Carousel Buttons and makes them highly visible */
.reviews .carousel-btn {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%);
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  cursor: pointer; 
  z-index: 20; 
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.8); /* Dark background so it doesn't blend into text */
  color: #f4c36f; /* Gold arrow */
  border: 2px solid #f4c36f; /* Gold border */
  transition: all 0.3s ease;
}

.reviews .carousel-btn:hover { 
  background: #f4c36f; 
  color: #0f172a; 
}

/* 1. Adds padding to create a "safe zone" for the buttons to sit in */
.carousel-wrapper { 
  position: relative; 
  overflow: hidden; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 25px; /* Pushes the cards inward so buttons can sit half-out */
}

/* 2. Moves buttons to the absolute edge of the wrapper (perfect half-in/half-out) */
.reviews .carousel-btn.left { left: 0px; }
.reviews .carousel-btn.right { right: 0px; }

/* 3. Small mobile adjustment so cards don't get squished on phones */
@media (max-width: 768px) {
  .carousel-wrapper { 
    padding: 0 10px; 
  }
  .reviews .carousel-btn {
    width: 40px; 
    height: 40px;
    font-size: 16px;
  }
  .reviews .carousel-btn.left { left: -5px; }
  .reviews .carousel-btn.right { right: -5px; }
}

.review-stars { color: #f4c36f; font-size: 20px; margin-bottom: 15px; margin-top: -30px; letter-spacing: 2px; }
.review-header { font-size: 20px; font-weight: bold; margin: 10px 0; color: #ffffff; }
.review-text-wrapper { position: relative; }
.review-text { font-size: 15px; color: #cbd5e1; margin-bottom: 15px; line-height: 1.6; max-height: 90px; overflow: hidden; transition: max-height 0.3s ease; }
.review-text.expanded { max-height: 1000px; }
.toggle-more { display: inline-block; margin-top: 12px; color: #f4c36f; cursor: pointer; font-weight: bold; margin-bottom: 20px; transition: color 0.2s ease;}
.toggle-more:hover { color: #fff; }

/* Separator line above Author name */
.review-author { font-size: 14px; color: #94a3b8; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; }
.review-link { color: #f4c36f; text-decoration: none; font-weight: bold; font-size: 1.05rem; }
.review-link:hover { text-decoration: underline; color: #fff; }
.review-date { display: block; color: #64748b; font-size: 13px; margin-top: 5px; }

/* Ghost watermark styling */
.review-image { width: 30px; background-size: cover; background-position: center; opacity: 0.05; }

@media (max-width: 768px) {
  .review-carousel { gap: 18px; }
  .review-card { width: 100%; max-width: 90%; }
  .review-content { padding: 24px; }
}

/* Ensure the final CTA Section stays Bright Gold */
.cta-section {
  position: relative;
  z-index: 10;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e2ae3f 0%, #f4c36f 100%);
  text-align: center;
  box-shadow: 0 -10px 40px rgba(226, 174, 63, 0.2);
}

/* ============CTA Section================== */
.cta-section {
  padding: 2rem 1rem 2rem;
  background: linear-gradient(135deg, #56ab2f30 0%, #a8e063ab 100%);
  text-align: center;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease forwards;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(31, 41, 55, 0.7);
  margin-bottom: 2rem;
}

/* Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Filled Button */
.cta-btn-filled {
  background: linear-gradient(90deg, #25d366, #128c7e);
  /* WhatsApp colors */
  color: #fff;
  border: none;
}

.cta-btn-filled:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Outline Button */
.cta-btn-outline {
  background: transparent;
  color: #128c7e;
  border: 2px solid #128c7e;
}

.cta-btn-outline:hover {
  background: #128c7e;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.35);
}

/* Icon styling */
.cta-btn i {
  font-size: 1.25rem;
}

/* Responsive */
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================================
   FLOATING BUTTONS (BOOKING & SCROLL UP)
   ===================================================================== */
/* 1. Book Your Adventure (Moved to Top Right) */
.floating-book-btn {
  position: fixed;
  top: 150px; /* Placed just below your double navbar */
  right: 30px;
  background: linear-gradient(135deg, #f4b860, #e07a5f);
  color: #111;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(224, 122, 95, 0.4);
  z-index: 9999;
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px); /* Slides down from the top */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-book-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(224, 122, 95, 0.6);
  color: #000;
}

.floating-book-btn svg { transition: transform 0.3s ease; }
.floating-book-btn:hover svg { transform: translateX(4px); }


/* 2. Scroll To Top Button (Bottom Right) */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4b860, #e07a5f);
  border: 2px solid rgba(15, 23, 42, 0.8);
  color: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(224, 122, 95, 0.4);
  z-index: 9999;
  backdrop-filter: blur(8px);
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px); /* Slides up from the bottom */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(224, 122, 95, 0.6);
  color: #000;
}

/* Hide the mobile text by default on Desktop */
.mobile-text {
  display: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  /* 1. Shrink the overall button size */
  .floating-book-btn {
    top: 160px; /* Clears your stacked mobile header */
    right: 15px;
    padding: 8px 16px; /* Reduced padding for a slimmer pill */
    font-size: 0.85rem; /* Smaller, sharper text */
    gap: 6px; /* Less space between text and arrow */
  }
  
  /* 2. Shrink the SVG arrow icon so it matches the smaller text */
  .floating-book-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Swap to "Book Now" text */
  .desktop-text { display: none; }
  .mobile-text { display: inline; }

  /* Keep scroll button tucked away */
  .scroll-to-top-btn {
    bottom: 20px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}