/* =====================================
   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;
  }
}

/* =====================================
   Root Variables & Base Styles
   ===================================== */
:root {
  --gold: #d4af37;
  --platinum: #e5e4e2;
  --black: #111;
  --white: #ffffff;
  --gray: #f5f5f5;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  background: #fff;
  margin: 0;
  padding: 0;
}

/* Loader */
#loading {
  text-align: center;
  padding: 4rem;
  font-size: 2.5rem;
  color: #999;
  margin-top: 6rem;
}

/* Fade-in for trip content */
#trip-content {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
#trip-content.show {
  display: block;
  opacity: 1;
}

/* =====================================
   Hero Media Grid Section
   ===================================== */
.hero-trip {
  margin-top: 6rem;
  overflow: hidden;
  padding: 0;
  width: 100%;
  position: relative;
}

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

.hero-main-media {
  grid-column: 1;
  grid-row: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #f0f0f0;
}

.hero-video-container,
.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.2s ease;
}

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

.hero-main-video,
.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.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: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  background: #f0f0f0;
}

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

.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: 6px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  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: 2rem 3rem;
  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: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--black);
  font-weight: 600;
}

.overlay-subtitle {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

.close-overlay {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
  transition: color 0.3s ease;
  padding: 0.5rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.close-overlay:hover {
  background: #f0f0f0;
  color: var(--black);
}

.media-overlay-grid {
  flex: 1;
  overflow-y: auto;
  padding: 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: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-content: start;
}

.overlay-media-item {
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.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: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.overlay-media-item.video-item:hover {
  transform: none;
  box-shadow: none;
}

.overlay-image {
  width: 100%;
  height: 100%;
  max-height: 658px;
  object-fit: cover;
  margin: auto;
  display: block;
}

.overlay-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 0.8rem;
  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: #666;
  font-size: 1.2rem;
  padding: 3rem;
}

/* =====================================
   Mobile Responsive Design
   ===================================== */
@media (max-width: 768px) {
  .hero-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 250px;
    gap: 0;
  }
  
  .hero-main-media {
    grid-column: 1;
    grid-row: 1;
  }
  
  .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: 1.5rem 1rem;
  }
  
  .media-overlay-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  
  .overlay-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .close-overlay {
    right: 1rem;
    font-size: 1.3rem;
  }
  
  .media-overlay-images-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
  
  .media-overlay-video-section {
    min-height: 250px;
    max-height: 300px;
  }
  
  .overlay-image {
    height: 350px;
    max-height: 350px;
  }
  
  .overlay-video-container {
    height: 350px;
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-media-grid {
    height: 220px;
  }
  
  .hero-thumbnail-grid {
    width: 100px;
    height: 70px;
    bottom: 8px;
    right: 8px;
  }
  
  .hero-all-photos-btn {
    bottom: 8px;
    left: 8px;
  }
  
  .all-photos-button {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  .media-overlay-content {
    width: 100vw;
    height: 100vh;
  }
  
  .media-overlay-header {
    padding: 1rem 0.8rem;
  }
  
  .media-overlay-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }
  
  .overlay-subtitle {
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0 1rem;
  }
  
  .close-overlay {
    right: 0.8rem;
    font-size: 1.2rem;
    padding: 0.3rem;
  }
  
  .media-overlay-images-section {
    grid-template-columns: 1fr;
    padding: 0.8rem;
    gap: 0.8rem;
  }
  
  .media-overlay-video-section {
    min-height: 200px;
    max-height: 220px;
  }
  
  .overlay-image {
    height: 300px;
    max-height: 300px;
  }
  
  .overlay-video-container {
    height: 300px;
    max-height: 300px;
  }
  
  .overlay-media-item {
    border-radius: 0.5rem;
  }
}

/* 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);
}
.carousel-item.active .parallax-img {
  /* For active slide, reset transform */
  transform: translateY(0) scale(1.05);
}
.carousel-item-next .parallax-img,
.carousel-item-prev .parallax-img {
  /* For sliding in/out effect */
  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%; }
}

/* =====================================
   Navbar & Branding
   ===================================== */
.make-tv {
  overflow: hidden !important;
  border-radius: 27px;
  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: 'Playfair Display', serif;
}

/* =====================================
   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: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.trip-header-row h1 {
  font-size: 3.5rem;
  margin-bottom: 0.4rem;
}
.trip-header-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
}
.trip-header-meta-card {
  background: #fff;
  border-radius: 0.85rem;
  box-shadow: 0 2px 12px rgba(212,175,55,0.07), 0 1.5px 0 #fff inset;
  padding: 1.2rem 1.4rem;
  min-width: 170px;
  font-size: 1.08rem;
  color: #222;
  font-family: 'Plus Jakarta Sans', sans-serif;
  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: #111;
  font-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: 0.93rem;
  font-style: italic;
  color: #b7a56a;
  margin-bottom: 0.18rem;
}
.trip-header-meta-card .meta-value {
  font-size: 1.12rem;
  font-weight: 600;
}
.hero-content {
  z-index: 3;
  padding: 2rem;
}
.hero-content h1, .footer h1 {
  font-size: 6rem;
  color: white;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.hero-content p {
  font-size: 1.25rem;
  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;
}

/* =====================================
   Sections & Typography
   ===================================== */
.section {
  padding: 5rem 1rem;
}
.section-title, h2 {
  font-family: "Playfair Display", serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-size: 2.5rem;
}
.section-sub-title {
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 1.5rem;
  color: #8c8c8c;
}
.max-width-800 {
  max-width: 800px;
}

/* =====================================
   Trip Cards & Highlights
   ===================================== */
/* Premium Trip Cards Section */
.trip-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}


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

/* Premium Trip Card */
.trip {
  background: var(--white);
  border-radius: 1.4rem;
  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: 3rem;
  padding: 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: 2.5rem 2.2rem;
  font-size: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #222;
  position: relative;
}
.trip-description::before {
  content: '\201C';
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  font-size: 5rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

/* =====================================
   Trip Curator Section
   ===================================== */
/* =====================================
   UNIFIED BUTTON SYSTEM
   ===================================== */

/* Base button styles */
.btn-base {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  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: 27px;
}

/* 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: 1rem 2.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #111;
  background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 25%, #b8941f 50%, #d4af37 75%, #f4e4a6 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 4px 15px rgba(212, 175, 55, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
  color: #111;
  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: 1.1rem 2.7rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #d4af37 0%, #aa7e11 100%);
  box-shadow: 0 8px 32px rgba(212,175,55,0.14), 0 2px 8px #fffbe7;
  letter-spacing: 0.02em;
}
.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: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.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 */
.btn-form {
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  color: #000;
  background: #d0b27d;
  border-radius: 0 50px 50px 0;
}
.btn-form:hover {
  color: #000;
  text-decoration: none;
  background: #c4a66b;
  transform: translateY(-1px);
}

/* Size modifiers */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .btn-secondary {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 0.85rem 2rem;
  }
}

.curator-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.2rem;
}

.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: 0.5rem;
  margin-bottom: 0.5rem;
  background: none;
}
.meet-curator-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  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: 50%;
  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: 1.13rem;
  color: #3c3622;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.curator-signature {
  margin-top: 1.2rem;
  font-size: 2.2rem;
  font-family: "Playfair Display", serif !important;
  color: #222;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-style: italic;
}
.signature-font {
  
  font-size: 2.2rem;
  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: 1.25rem;
  }
  .meet-curator-title {
    font-size: 1.35rem;
  }
}

.curator-section {
  background: linear-gradient(120deg, #fffbe7 0%, #f5e8c8 100%);
  border-radius: 1.5rem;
  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: 1.2rem;
  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: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  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: 1.15rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  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: 1.35rem;
  }
  .curator-bio {
    font-size: 1.01rem;
  }
}

/* =====================================
   FAQ Section (Minimal, Premium)
   ===================================== */
.faq-section {
  background: #fff;
  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: 1.12rem;
  font-weight: 600;
  font-style: italic;
  color: #222;
  margin-bottom: 0.3rem;
}
.faq-a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #444;
  font-size: 1.04rem;
  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: 0.9rem;
  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;
  }
}


@media (max-width: 767.98px) {
  .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;
  }
}
.trip-text {
  padding: 2rem;
}
.trip-title {
  font-size: 2rem;
  font-family: "Playfair Display", serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  margin-top: 5rem;
}
.trip-sub {
  font-style: italic;
  color: #777;
}
/* Premium "Coming Soon" Badge */
.coming-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #111;
  background: linear-gradient(90deg, #e5c16c 0%, #d4af37 50%, #e5c16c 100%);
  border-radius: 0.6rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.18), 0 1.5px 0 #fff inset;
  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: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #28a745 100%);
  border-radius: 0.6rem;
  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: #d4af37;
  text-decoration: none;
}




/* Highlight grid and boxes */

/* Experience highlights new layout */
.price-note {
  font-size: 0.75em;
  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: 8px;
  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: 4px;
  display: block;
  margin-bottom: 15px;
  background: #f8f9fa;
}

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

.highlight-experience-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2c3e50;
  line-height: 1.3;
  font-style: italic;
  font-weight: 600;
}

.highlight-experience-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}

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

/* Mobile responsive design - 2 column layout */
@media (max-width: 768px) {
  .highlights-list {
    min-height: auto;
    padding: 20px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
  }
  
  .highlight-experience {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: rotate(0deg) !important;
    margin: 0;
    max-width: 160px;
    width: 100%;
  }
  
  .highlight-experience:hover {
    transform: scale(1.02) rotate(0deg) !important;
  }
  
  .highlight-experience-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
  
  .highlight-experience-title {
    font-size: 0.9rem;
  }
  
  .highlight-experience-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .highlights-list {
    gap: 15px;
    padding: 15px 8px;
  }
  
  .highlight-experience {
    max-width: 140px;
    padding: 10px 10px 18px 10px;
  }
  
  .highlight-experience-img {
    height: 100px;
  }
  
  .highlight-experience-title {
    font-size: 0.85rem;
  }
  
  .highlight-experience-desc {
    font-size: 0.8rem;
  }
}

/* Distinct style for experience highlights */
.highlights .highlight-box {
  background: #f5f9ff;
  border: 2px solid #3a7bd5;
  border-radius: 18px;
  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-box {
  background: var(--gray);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: center;
  transition: all 0.3s ease;
}
.highlight-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.highlight-box .label {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.highlight-box .value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
}
.highlight-box .icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}
.highlight-box .price {
  font-size: 1.1rem;
  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: 1.3rem;
  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: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 8px;
  text-align: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.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%);
}

/* =====================================
   Itinerary Cards (Trip Page)
   ===================================== */
.itinerary-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.itinerary-card {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-left: 5px solid var(--gold);
}
.itinerary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.itinerary-day-badge {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.itinerary-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.itinerary-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* =====================================
   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: 1rem;
  border-radius: 50px 0 0 50px;
  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);
}

.form-response {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
}

/* =====================================
   Trip Itinerary Card Styling
===================================== */
.itinerary-card {
  background: #fafbfa;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  margin-bottom: 1rem;
  transition: box-shadow 0.2s;
}
.itinerary-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.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;
}
.itinerary-day-badge {
  color: #b89c1d;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.itinerary-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  font-style: italic;
}
.itinerary-desc {
  font-size: 1.06rem;
  color: #222;
  opacity: 0.92;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.itinerary-hotel {
  margin-top: 0.7rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.itinerary-meals {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.itinerary-meal-badge {
  display: inline-block;
  background: #f5e8c8;
  color: #7a6514;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 0.97rem;
  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: 0 16px 16px 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  display: block;
  background-color: #eee;
  min-height: 600px;
}

@media (max-width: 900px) {
  .itinerary-details {
    gap: 1.1rem;
  }
  .itinerary-text {
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  }
  .itinerary-title {
    font-size: 1.12rem;
  }
  .itinerary-desc {
    font-size: 0.98rem;
  }
}
@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: 0 0 16px 16px;
    margin-bottom: 0.2rem;
  }
  .itinerary-img {
    border-radius: 0 0 16px 16px;
    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: 0.97rem;
    margin-bottom: 0.7rem;
  }
}

/* =====================================
   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;
}

/* =====================================
   Footer & Socials
   ===================================== */
.footer {
  background: #111;
  color: var(--platinum);
  padding: 4rem 0 2rem;
  border-top: 5px solid var(--gold);
}

/* Top Row: Logo and Contact */
.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;
}

.footer-trip-content {
  text-align: left;
}

.footer-trip-link {
  text-decoration: none;
  color: var(--platinum);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-trip-link h3 {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--platinum);
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  transition: all 0.3s ease;
}

.footer-trip-link h3 i {
  font-size: 1rem;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

/* Subtle underline effect for trip link */
.footer-trip-link::after {
  content: '';
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--platinum);
  transition: width 0.3s ease;
}

.footer-trip-link:hover {
  transform: translateY(-2px);
}

.footer-trip-link:hover h3 {
  color: var(--platinum);
}

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

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

.footer-trip-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--platinum);
  margin-bottom: 1rem;
  max-width: 400px;
  opacity: 0.8;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* 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: "Playfair Display", serif;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-phone {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.footer-email {
  font-size: 2rem;
  line-height: 1.3;
  opacity: 0.8;
}

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

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

.footer-phone:hover::after,
.footer-email:hover::after {
  width: 100%;
}

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

/* American Muscle section takes up left space */
.footer-trip-content {
  justify-self: start;
}

/* Follow and Legal sections positioned on extreme right */
.footer-social,
.footer-legal {
  justify-self: end;
  min-width: 150px;
}

/* Navigation, Social, Legal Sections */
.footer-nav h5,
.footer-social h5,
.footer-legal h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--platinum);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.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: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0.8;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  display: inline-block;
}

/* Subtle underline effect for footer links */
.footer-nav ul li a::after,
.footer-legal ul li a::after,
.footer-social ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--platinum);
  transition: width 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover,
.footer-social ul li a:hover {
  color: var(--platinum);
  opacity: 1;
  transform: translateY(-2px);
}

.footer-nav ul li a:hover::after,
.footer-legal ul li a:hover::after,
.footer-social ul li a:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--platinum);
  opacity: 0.6;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-bottom p {
  margin: 0;
}

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

.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%;
    display: flex;
    justify-content: center;
  }
  
  .footer-logo {
    height: 80px;
    display: block;
    margin: 0 auto;
  }
  
  .footer-contact {
    text-align: center;
    gap: 0.3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer-phone {
    font-size: 1.6rem;
  }
  
  .footer-email {
    font-size: 1.1rem;
  }
  
  /* Compact Mobile Bottom Sections */
  .footer-bottom-sections {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-trip-content {
    display: none;
  }
  
  .footer-trip-link h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-trip-link h3 i {
    font-size: 0.7rem;
  }
  
  .footer-trip-content p {
    font-size: 0.8rem;
    max-width: 100%;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
  
  /* Compact Inline Block Sections - Centered */
  .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: 0.9rem;
    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: 0.8rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 0.8rem;
  }
  
  .footer-top {
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .footer-logo {
    height: 60px;
    display: block;
    margin: 0 auto;
  }
  
  .footer-contact {
    gap: 0.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer-phone {
    font-size: 1.4rem;
  }
  
  .footer-email {
    font-size: 1rem;
  }
  
  .footer-trip-content {
    margin-bottom: 1rem;
  }
  
  .footer-trip-link h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .footer-trip-link h3 i {
    font-size: 0.6rem;
  }
  
  .footer-trip-content p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  /* More compact inline blocks on very small screens - Centered */
  .footer-social,
  .footer-legal {
    display: inline-block;
    margin: 0 0.8rem;
    vertical-align: top;
    text-align: center;
  }
  
  .footer-social h5,
  .footer-legal h5 {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-nav ul li,
  .footer-legal ul li,
  .footer-social ul li {
    margin-bottom: 0.2rem;
  }
  
  .footer-nav ul li a,
  .footer-legal ul li a,
  .footer-social ul li a {
    font-size: 0.75rem;
  }
  
  .footer-bottom {
    gap: 0.3rem;
    font-size: 0.7rem;
    padding-top: 0.8rem;
  }
}

/* =====================================
   Utilities & Helpers
   ===================================== */
.hidden {
  display: none !important;
}
.trip-img-js {
  max-height: 500px;
  object-fit: cover;
  border-radius: 26px;
}

/* =====================================
   Responsive Design
   ===================================== */
@media (max-width: 768px) {
  .highlight-box {
    padding: 1.5rem;
  }
  .highlight-box .label {
    font-size: 1rem;
  }
  .highlight-box .value {
    font-size: 1.2rem;
  }
  .highlight-box .price {
    font-size: 1.4rem;
  }
  .highlight-box.urgent .value {
    font-size: 1.1rem;
  }
  .itinerary-card {
    padding: 1.25rem;
  }
}
@media (max-width: 480px) {
  .highlight-grid {
    gap: 1.25rem;
  }
  .highlight-box {
    border-radius: 0.75rem;
    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;
}

.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;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.make-tv {
    overflow: hidden !important;
    border-radius: 27px;
    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: 1rem;
    border-radius: 50px 0 0 50px;
    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 50px 50px 0;
    cursor: pointer;
}

.form-response {
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

.hidden {
  display: none !important;
}

.trip-img-js {
  max-height: 500px;
  object-fit: cover;
  border-radius: 26px;
}

    .carousel-fade .carousel-item {
      transition: opacity 1s ease-in-out;
      opacity: 0;
    }

    .carousel-fade .carousel-item.active {
      opacity: 1;
      z-index: 1;
    }

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

    .carousel-item.active img {
      transform: scale(1.05);
    }

    /* 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;
    }

    /* Carousel control buttons: make them more refined */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 70% 70%;
      filter: drop-shadow(0 0 3px rgba(0,0,0,0.4));
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 8%;
    }



    .info-group {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

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

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

    .itinerary-day {
      margin-bottom: 1rem;
    }

    .faq-item {
      margin-bottom: 1rem;
    }

    .faq-question {
      cursor: pointer;
      font-weight: 600;
      background: #f0f0f0;
      padding: 0.5rem;
      border-radius: 6px;
    }

    .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: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: center;
  transition: all 0.3s ease;
}

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

.highlight-box .label {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.highlight-box .value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
}

.highlight-box .icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-box .price {
  font-size: 1.1rem;
  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: 1.3rem;
  font-weight: 600;
}

@media (max-width: 768px) {

  .highlight-box {
    padding: 1.5rem;
  }

  .highlight-box .label {
    font-size: 1rem;
  }

  .highlight-box .value {
    font-size: 1.2rem;
  }

  .highlight-box .price {
    font-size: 1.4rem;
  }

  .highlight-box.urgent .value {
    font-size: 1.1rem;
  }
}

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

  .highlight-box {
    border-radius: 0.75rem;
    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;
      }

    .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;
    }

    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .make-tv {
      overflow: hidden !important;
      border-radius: 27px;
      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: 'Playfair Display', serif;}

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

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(0,0,0,0.2));
      z-index: 2;
      animation: overlayPulse 15s ease-in-out infinite;
    }

    @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;
    }

    .footer h1, .hero-content h1 {
      font-size: 6rem;
      color: white;
      font-family: "Playfair Display", serif;
      font-optical-sizing: auto;
      font-weight:  800;
      font-style: normal;
    }

    .hero-content p {
      font-size: 1.25rem;
      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;
    }

    .section {
      padding: 5rem 1rem;
    }

    .section-title, h2 {
      font-family: "Playfair Display", serif !important;
      font-optical-sizing: auto;
      font-weight:  600;
      font-style: italic;
      font-size: 3rem;
    }

        .section-sub-title{
      font-optical-sizing: auto;
      font-style: italic;
      font-size: 1.1rem;
      color: #8c8c8c;
    }

    .trip {
      background: var(--white);
      border-radius: 28px;
      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: 2rem;
      font-family: "Playfair Display", serif !important;
      font-optical-sizing: auto;
      font-weight:  400;
      font-style: italic;
      margin-bottom: 2rem;
      margin-top: 5rem;
    }

    .trip-sub {
      font-style: italic;
      color: #777;
    }

    .coming-badge {
      max-width: 150px;
      text-align: center;
      background: #efe3a4;
      color: #000;
      padding: 0.5rem 1rem;
      font-weight: bold;
      border-radius: 0.5rem;
    }

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

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

    .footer {
      background: #111;
      color: var(--platinum);
      text-align: center;
      padding: 3rem 1rem;
    }

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

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

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

    .itinerary-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.itinerary-card {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-left: 5px solid var(--gold);
}

.itinerary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* 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: 12px;
  padding: 4px 8px;
  font-size: 0.9rem;
  margin-left: 0.5rem;
  box-shadow: 0 2px 4px rgba(212, 175, 55, 0.15);
  transition: all 0.2s ease;
  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: 0.85rem;
  margin-left: 4px;
  letter-spacing: 0.3px;
}

.hotel-star-rating::before {
  content: '';
  color: #d4af37;
  font-size: 1rem;
  margin-right: 2px;
}

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

.itinerary-day-badge {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.itinerary-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.itinerary-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .itinerary-card {
    padding: 1.5rem;
  }

  .itinerary-title {
    font-size: 1.3rem;
  }

  .itinerary-desc {
    font-size: 1rem;
  }

  /* 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: 0.85rem;
    padding: 3px 6px;
  }

  .hotel-star-rating .star-label {
    font-size: 0.8rem;
    margin-left: 2px;
  }
}

/* =====================================
   Legal Pages Hero Section - Premium Enhanced
   ===================================== */
.legal-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 3rem 3rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.legal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(17, 17, 17, 0.4) 30%,
    rgba(212, 175, 55, 0.2) 70%,
    rgba(245, 232, 200, 0.1) 100%
  );
  backdrop-filter: blur(1px);
  z-index: 2;
}

.legal-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #f5e8c8, #d4af37, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -moz-background-clip: text;
  animation: heroTextShimmer 4s ease-in-out infinite;
  letter-spacing: -0.02em;
}

.legal-hero-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.98;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.7;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

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

/* Premium mobile responsiveness for legal hero */
@media (max-width: 768px) {
  .legal-hero {
    height: 50vh;
    min-height: 400px;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
  }
  
  .legal-hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .legal-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .legal-hero-content {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .privacy-policy-page,
  .sitemap-section {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  
  .privacy-content,
  .sitemap-content {
    padding: 0 0.5rem;
  }
  
  .privacy-section,
  .sitemap-section-block {
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 1.2rem;
  }
  
  .privacy-header {
    padding: 1.5rem 1.2rem;
    margin-bottom: 2rem;
  }
  
  .privacy-section h2,
  .sitemap-section-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .privacy-section p,
  .privacy-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .privacy-list {
    padding-left: 1.2rem;
  }
  
  .section-divider {
    margin: 2rem 0;
  }
  
  .contact-info {
    padding: 1.2rem;
    font-size: 0.9rem;
  }
  
  .btn-base {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-height: 44px; /* Touch target size */
  }
}

@media (max-width: 480px) {
  .legal-hero {
    height: 45vh;
    min-height: 320px;
    border-radius: 0 0 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .legal-hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  
  .legal-hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 95%;
    margin: 0 auto;
  }
  
  .legal-hero-content {
    padding: 1.5rem 1rem;
  }
  
  .privacy-policy-page,
  .sitemap-section {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }
  
  .privacy-content,
  .sitemap-content {
    padding: 0 0.8rem;
  }
  
  .privacy-section,
  .sitemap-section-block {
    padding: 1.2rem 1rem;
    margin-bottom: 1.2rem;
    border-radius: 1rem;
  }
  
  .privacy-section h2,
  .sitemap-section-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }
  
  .privacy-section p,
  .privacy-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }
  
  .privacy-list {
    padding-left: 1rem;
  }
  
  .section-divider {
    margin: 1.5rem 0;
  }
  
  .contact-info {
    padding: 1rem;
    font-size: 0.85rem;
  }
  
  .sitemap-link {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    min-height: 44px; /* Touch target size */
    display: flex;
    align-items: center;
  }
  
  .sitemap-link:hover {
    transform: translateX(4px) translateY(-1px);
  }
  
  .btn-base {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    min-height: 44px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  
  .footer-link {
    padding: 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =====================================
   Privacy Policy Page Styles - Premium Enhanced
   ===================================== */
.privacy-policy-page {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #ffffff 100%);
  min-height: 100vh;
  position: relative;
}

.privacy-policy-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.privacy-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.privacy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: headerShimmer 3s ease-in-out infinite;
}

.privacy-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.privacy-header .lead {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.privacy-section {
  margin-bottom: 2rem;
}

@keyframes headerShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.privacy-section {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.privacy-section:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
  opacity: 0.6;
}

.privacy-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.privacy-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.subsection-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.privacy-section p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.privacy-list li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-list li::before {
  content: "•";
  color: var(--gold);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 3rem 0;
  opacity: 0.3;
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.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: 3rem;
  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: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 2.5rem;
  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: 2.5rem;
  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: 0.3rem;
    border-radius: 2rem;
    margin: 1.5rem auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .footer-link {
    font-size: 0.85rem;
    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: 1.5rem;
    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: 0.8rem;
    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: 0.9rem;
    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 Responsive for Privacy Policy */
@media (max-width: 768px) {
  .privacy-policy-page {
    padding-top: 6rem;
  }

  .privacy-header h1 {
    font-size: 2.5rem;
  }

  .privacy-section h2 {
    font-size: 1.8rem;
  }

  .subsection-title {
    font-size: 1.2rem;
  }

  .privacy-section p,
  .privacy-list li {
    font-size: 1rem;
  }

  .contact-info {
    padding: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* =====================================
   Sitemap Page Styles - Premium Enhanced
   ===================================== */
.sitemap-section {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #ffffff 100%);
  min-height: 100vh;
  position: relative;
}

.sitemap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.sitemap-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.sitemap-section-block {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 2rem;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sitemap-section-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.3), var(--gold));
  opacity: 0.8;
}

.sitemap-section-block:hover {
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.08),
    0 3px 10px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sitemap-section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.sitemap-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.3));
  border-radius: 2px;
}

.sitemap-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  gap: 1rem;
}

.sitemap-list li {
  margin-bottom: 0;
}

.sitemap-link {
  color: #333;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 
    0 1px 4px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}



.sitemap-link:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.3);
}

.sitemap-link i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.company-info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-info-card h3 {
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.company-info-card p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.company-info-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.company-info-card a:hover {
  color: #b8941f;
  text-decoration: underline;
}

/* Mobile Responsive for Sitemap */
@media (max-width: 768px) {
  .sitemap-section {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sitemap-section-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sitemap-section-title {
    font-size: 1.6rem;
  }

  .sitemap-link {
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
  }

  .sitemap-link:hover {
    transform: translateX(4px);
  }

  .company-info-card {
    padding: 1.5rem;
  }
}

/* =====================================
   Mobile Space Optimization
   ===================================== */
@media (max-width: 768px) {
  /* Optimize container spacing for mobile */
  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    max-width: 100% !important;
  }
  
  /* Hero section full width optimization */
  .hero-trip {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* 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: 1rem;
  }
  
  /* 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: 1rem;
  }
  
  /* Hero media grid optimization */
  .hero-media-grid {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    border-radius: 0;
  }
  
  /* Thumbnail grid spacing */
  .hero-thumbnails {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  
  /* Button optimizations */
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: none;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  /* Ultra-compact mobile optimization */
  .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  .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 */
  .itinerary-grid {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    gap: 0.75rem;
  }
  
  /* Hero section edge-to-edge */
  .hero-media-grid {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  /* Typography adjustments for space */
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

/* =====================================
   Reshuffle Button Styles
   ===================================== */
.reshuffle-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 180px !important;
}

.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: 1.2rem;
  transition: transform 0.3s ease;
}

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

.reshuffle-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Fun ripple effect on click */
.reshuffle-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  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;
  }
}

/* =====================================
   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: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.parallax-video-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  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: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .parallax-video-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .parallax-video-effect-home-page {
    height: 60vh;
    min-height: 400px;
  }
  
  .parallax-video-title {
    font-size: 2rem;
  }
  
  .parallax-video-subtitle {
    font-size: 1rem;
  }
}

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

