/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   style.css â€“ Base design system for Destination Your Choice
   Keep it simple; visual overhaul comes later.
   â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400&family=Inter:wght@400;600;700;800&family=Poppins:wght@400;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=Tenor+Sans&display=swap");

/* â”€â”€ Reset & Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-bg: #000000;
  --clr-surface: #111111;
  --clr-text: #f1f5f9;
  --clr-text-muted: #94a3b8;
  --clr-heading: #ffffff;
  --clr-primary: #f59e0b;
  --clr-primary-dark: #d97706;
  --clr-accent: #34d399;
  --clr-accent-dark: #059669;
  --clr-border: #222222;
  --clr-placeholder: #333333;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --font: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --logo-size: 84px;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-heading);
  line-height: 1.2;
  font-family: "Tenor Sans", "DM Sans", Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--clr-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* â”€â”€ Utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-title {
  font-size: clamp(60px, 6vw, 80px);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.text-center,
.section-title-centered {
  text-align: center;
}

.mt {
  margin-top: 2rem;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}

.btn--primary {
  background: var(--clr-primary);
  color: #000;
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  text-decoration: none;
}

.btn--outline {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: none;
}

.btn--outline:hover {
  background: var(--clr-primary);
  color: #000;
  text-decoration: none;
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* â”€â”€ Dynamic Image Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dyn-img {
  overflow: hidden;
  border-radius: 5px;
  background: var(--clr-placeholder);
  /* aspect-ratio set dynamically by JS on load */
}

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

/* â”€â”€ Nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  background: linear-gradient(-171deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0) 100%);
  backdrop-filter: url(#glass-dispersion);
  -webkit-backdrop-filter: url(#glass-dispersion);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 20px 20px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 1px rgba(255, 255, 255, 0.1),
    0 25px 45px rgba(0, 0, 0, 0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Dynamically spaces left, right, and center */
  width: 100%;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  margin: 0 auto;
}

.nav__divider {
  width: 1px;
  align-self: stretch;
  margin: -1.5rem 0;
  /* Negate the parent's padding to touch the edges */
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

.nav__brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__brand:hover {
  text-decoration: none;
}

.nav__brand-img {
  height: var(--logo-size, 48px);
  width: auto;
  display: block;
}

.nav__mobile-left {
  display: none;
}

.nav__side {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: clamp(1rem, 3vw, 3rem);
  /* Space between links and divider */
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav__links a {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Tenor Sans", sans-serif;
  letter-spacing: 1.5px;
}

.nav__links a:hover {
  color: var(--clr-primary);
  text-decoration: none;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  z-index: 110;
  padding: 0.5rem;
  line-height: 1;
}

.nav__drawer,
.nav__drawer-overlay {
  display: none;
}

/* â”€â”€ Mobile Nav Drawer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {

  .nav__drawer,
  .nav__drawer-overlay {
    display: block;
  }

  #nav {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 0 0 20px 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(-171deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: url(#glass-dispersion);
    -webkit-backdrop-filter: url(#glass-dispersion);
    box-shadow:
      inset 0 -1px 1px rgba(255, 255, 255, 0.1),
      0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 201;
    /* Keeps navbar above the dark overlay */
  }

  .nav__inner {
    padding: 0.75rem clamp(1.5rem, 5vw, 4rem);
    justify-content: space-between;
  }

  .nav__brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__mobile-left {
    display: block;
    position: absolute;
    left: clamp(1.5rem, 5vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  #nav.nav--scrolled .nav__mobile-left {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    pointer-events: none;
  }

  #nav.nav--scrolled .nav__brand {
    left: clamp(1.5rem, 5vw, 4rem);
    transform: translate(0, -50%);
  }

  .nav__brand-img {
    height: calc(var(--logo-size, 48px) * 0.75);
  }

  .nav__toggle {
    display: block;
    margin-left: auto;
  }

  .nav__divider {
    display: none;
  }

  .nav__side {
    display: none;
  }

  /* Mobile drawer (activated by JS toggle) */
  .nav__drawer {
    position: fixed;
    top: 85px;
    /* just below the detached navbar */
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    max-width: none;
    height: auto;
    border-radius: 30px;
    background: linear-gradient(-171deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: url(#glass-dispersion);
    -webkit-backdrop-filter: url(#glass-dispersion);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 200;
    padding: 2rem;
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.4),
      inset 0 -1px 1px rgba(255, 255, 255, 0.1),
      0 25px 45px rgba(0, 0, 0, 0.2);

    /* Animation for floating window */
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.4s ease;
  }

  .nav__drawer.open {
    transform: none;
    /* Important: transform MUST be none for backdrop-filter to work on some mobile browsers */
    opacity: 1;
    pointer-events: auto;
  }

  .nav__drawer-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: transparent;
    /* Changed from rgba(0, 0, 0, 0.6) to prevent screen dimming */
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav__drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__drawer-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
  }

  .nav__drawer ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav__drawer li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__drawer a {
    display: block;
    padding: 1rem 0;
    color: #fff;
    font-size: 1.1rem;
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    transition: color 0.2s;
  }

  .nav__drawer a:hover {
    color: var(--clr-primary);
    text-decoration: none;
  }

  .nav__drawer .drawer-cta {
    margin-top: 2rem;
    display: block;
    text-align: center;
    background: var(--clr-accent);
    color: #000;
    padding: 0.875rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
  }

  .nav__drawer .drawer-cta:hover {
    background: var(--clr-accent-dark);
  }
}

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes morphZoom {
  0% {
    transform: scale(calc(1 * var(--active-scale, var(--scale, 1))));
    filter: contrast(1) brightness(var(--brightness, 100%));
  }

  50% {
    transform: scale(calc(1.04 * var(--active-scale, var(--scale, 1))));
    filter: contrast(1.05) brightness(var(--brightness, 100%));
  }

  100% {
    transform: scale(calc(1 * var(--active-scale, var(--scale, 1))));
    filter: contrast(1) brightness(var(--brightness, 100%));
  }
}

#hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  background: #000;
}

.hero-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  container-type: inline-size;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Layer Content Smart Animate */
.hero-slide .hero__layer-content {
  /* Animate content elements directly since position is on the wrapper */
}

.hero-slide:not(.active) .hero__layer-content>* {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.hero-slide.active .hero__layer-content>* {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide.active .hero__layer-content> :nth-child(1) {
  transition-delay: 0.6s;
}

.hero-slide.active .hero__layer-content> :nth-child(2) {
  transition-delay: 0.75s;
}

.hero-slide.active .hero__layer-content> :nth-child(3) {
  transition-delay: 0.9s;
}

.hero-slide.active .hero__layer-content> :nth-child(4) {
  transition-delay: 1.05s;
}

.hero__layer-media {
  position: absolute;
  inset: -5%;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
}

.hero__layer-media img,
.hero__layer-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--posH, 50%) var(--posV, 50%);
  animation: morphZoom 20s infinite ease-in-out;
  transform-origin: center center;
  filter: brightness(var(--brightness, 100%));
}

.hero__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 0;
}

.hero__layer-content {
  position: absolute;
  left: var(--posH, 50%);
  top: var(--posV, 50%);
  transform: translate(calc(-1 * var(--posH, 50%)), calc(-1 * var(--posV, 50%))) translate3d(var(--px, 0px), var(--py, 0px), 0) scale(var(--active-scale, var(--scale, 1)));
  text-align: var(--textAlign, left);
  width: max-content;
  max-width: 90vw;
  color: #fff;
  padding: 0 1rem;
}

.hero__headline {
  font-size: var(--fs, clamp(4rem, 12vw, 12rem));
  margin-bottom: 0.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__sub {
  font-size: var(--sub-fs, clamp(0.9rem, 2cqw, 1.4rem));
  margin-bottom: clamp(1.5rem, 3cqw, 2.5rem);
  opacity: 1;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  margin-inline: auto;
  line-height: 1.4;
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .hero__layer-content {
    left: var(--m-posH, var(--posH, 50%));
    top: var(--m-posV, var(--posV, 50%));
    transform: translate(calc(-1 * var(--m-posH, var(--posH, 50%))),
        calc(-1 * var(--m-posV, var(--posV, 50%)))) translate3d(var(--px, 0px), var(--py, 0px), 0) scale(var(--active-scale, var(--scale, 1)));
    text-align: var(--m-textAlign, var(--textAlign, left));
  }

  .hero__headline {
    font-size: var(--m-fs, var(--fs, clamp(2.5rem, 10cqw, 9rem)));
  }

  .hero__sub {
    font-size: var(--m-sub-fs, var(--sub-fs, clamp(0.9rem, 2cqw, 1.4rem)));
  }

  .hero__layer-media img,
  .hero__layer-media video {
    object-position: var(--m-posH, var(--posH, 50%)) var(--m-posV, var(--posV, 50%));
  }

  .hero__layer-media,
  .hero__layer-content {
    --active-scale: var(--m-scale, var(--scale, 1));
  }
}

.hero__layer-content .btn {
  margin-top: calc(clamp(0.5rem, 1.5cqw, 1.5rem) * var(--scale, 1));
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: clamp(0.75rem, 1.5cqw, 1rem) clamp(1.5rem, 3cqw, 2.5rem);
  font-size: calc(clamp(0.85rem, 1.5cqw, 1.05rem) * var(--scale, 1));
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  pointer-events: auto;
}

.hero__layer-content .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 0.7rem;
}

/* Hero Progress Bar */
.hero__progress-bar {
  position: absolute;
  top: -20px;
  left: -40px;
  right: -40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.hero__progress-fill {
  width: 0%;
  height: 100%;
  background: #ffffff;
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Slider Controls */
.hero__controls {
  position: sticky;
  align-self: flex-end;
  margin-bottom: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 100;
}

.hero__controls button {
  background: linear-gradient(-171deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0) 100%);
  backdrop-filter: url(#glass-dispersion);
  -webkit-backdrop-filter: url(#glass-dispersion);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: auto;
  padding: 0.6rem 1.75rem;
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* Managed by margin on .btn-text */
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.7s ease-in-out;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 1px rgba(255, 255, 255, 0.1),
    0 25px 45px rgba(0, 0, 0, 0.2);
}

.hero__controls button .btn-text {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
  white-space: nowrap;
}

.hero__prev .btn-text {
  margin-left: 0;
}

.hero__prev:hover .btn-text {
  max-width: 100px;
  opacity: 1;
  margin-left: 0.75rem;
}

.hero__next .btn-text {
  margin-right: 0;
}

.hero__next:hover .btn-text {
  max-width: 100px;
  opacity: 1;
  margin-right: 0.75rem;
}

.hero__prev {
  border-radius: 50px 0 0 50px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.hero__next {
  border-radius: 0 50px 50px 0 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.hero__controls button .material-symbols-outlined {
  font-size: 26px;
  font-weight: 300;
}

.hero__controls button:hover {
  background: linear-gradient(-171deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.05) 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 -1px 1px rgba(255, 255, 255, 0.2),
    0 30px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero__controls {
    margin-bottom: 3.5rem;
    bottom: 3.5rem;
    gap: 0.5rem;
  }

  .hero__controls button {
    padding: 0.6rem 1.5rem;
    font-size: 1.25rem;
  }

  .hero__controls button .material-symbols-outlined {
    font-size: 30px;
  }
}

/* â”€â”€ Scroll Reveal Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.revealed>*:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger.revealed>*:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger.revealed>*:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-stagger.revealed>*:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-stagger.revealed>*:nth-child(5) {
  transition-delay: 0.33s;
}

.reveal-stagger.revealed>*:nth-child(6) {
  transition-delay: 0.4s;
}

.reveal-stagger.revealed>* {
  opacity: 1;
  transform: none;
}

/* ── Glass Card Mixin ───────────────────────────────────────── */
.glass-card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Immersive Section Background ───────────────────────────────────────── */
.immersive-section {
  position: relative;
  overflow: hidden;
}

.immersive-section__bg,
#inquiry .inquiry-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
}

.immersive-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.immersive-section__bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.6) 100%);
}

.immersive-section>.container,
.about__text,
#inquiry>.container {
  position: relative;
  z-index: 1;
}

/* â”€â”€ Section Title Redesign â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  max-width: 600px;
}



.section-title-centered+.section-sub {
  margin-inline: auto;
  text-align: center;
}

/* â”€â”€ About â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#about {
  position: relative;
  overflow: clip;
}

/* ── Hero-style stack: giant heading + images overlapping ── */
.about__editorial {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* The stack container: heading and images overlap here */
.about__stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 38vw, 520px);
}

/* Images behind the heading, absolutely positioned */
.about__stack-img {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.about__stack-img .dyn-img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  aspect-ratio: unset !important;
}

.about__stack-img .dyn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image 1: large, center area (wider landscape shape as requested) */
.about__stack-img--1 {
  width: clamp(320px, 85vw, 1200px);
  aspect-ratio: 21 / 9;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Image 2: smaller, offset bottom-right */
.about__stack-img--2 {
  width: clamp(200px, 25vw, 350px);
  height: clamp(220px, 28vw, 400px);
  bottom: -3rem;
  right: 10%;
}

/* Giant heading on top of images */
.about__big-title {
  position: relative;
  z-index: 10;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  width: 100%;
}

/* ── Body text: two-column beneath the stack ── */
.about__heading-col {
  /* This wraps the stack, no special styles needed */
}

.about__body-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
  z-index: 5;
  mix-blend-mode: difference;
}

.about__body-col p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 768px) {
  .about__stack {
    min-height: 250px;
  }

  .about__big-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .about__stack-img--1 {
    width: 75%;
    height: 80%;
    transform: translate(-50%, -50%);
  }

  .about__stack-img--2 {
    width: 45%;
    height: 55%;
    right: 0%;
    bottom: -2rem;
  }

  .about__body-col {
    grid-template-columns: 1fr;
  }
}

.highlights-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 5rem;
}

.highlight-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 179, 8, 0.3);
}

@media (max-width: 768px) {
  /* Make the About text/images sticky so they stay while cards overlap */
  .about__editorial {
    position: sticky;
    top: 4rem; /* Below the header */
    z-index: 1;
    will-change: transform; /* Hardware acceleration for smoother scrolling */
  }

  .highlights-row {
    position: relative;
    z-index: 10;
    margin-top: 1.5rem;
    display: block;
    padding-bottom: 2rem;
  }

  .highlights-row::after {
    content: "";
    display: block;
    height: 120vh; /* Provides scroll space so all 4 cards can stack over the About section */
  }

  .highlight-card {
    position: sticky;
    /* Cards stack starting from halfway down the screen, over the About text */
    top: calc(45vh + var(--card-index, 0) * 4.5rem);
    background: linear-gradient(135deg,
        rgba(20, 20, 20, 0.98) 0%,
        rgba(10, 10, 10, 1) 100%);
    box-shadow: 0 -10px 20px -10px rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    margin-bottom: 1rem;
    /* Disable expensive blur effect on mobile since background is opaque */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .highlight-card:nth-child(1) {
    --card-index: 0;
    z-index: 1;
  }

  .highlight-card:nth-child(2) {
    --card-index: 1;
    z-index: 2;
  }

  .highlight-card:nth-child(3) {
    --card-index: 2;
    z-index: 3;
  }

  .highlight-card:nth-child(4) {
    --card-index: 3;
    z-index: 4;
  }
}

.highlight-card__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.highlight-card h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

/* â”€â”€ Destinations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#destinations {
  background: #000;
  position: relative;
  z-index: 30;
  /* Ensure it covers the sticky cards */
}

@media (max-width: 768px) {
  #destinations {
    margin-top: -80vh;
    /* Pull up to cover the 100vh padding of highlights-row, leaving 20vh of space before wiping over the cards */
  }
}

@media (min-width: 768px) {
  #destinations {
    background: linear-gradient(to bottom,
        var(--clr-bg) 0%,
        rgba(15, 23, 42, 1) 100%);
  }
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

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

.dest-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dest-card .dyn-img {
  border-radius: 0;
  height: 100%;
}

.dest-card .dyn-img img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.dest-card:hover .dyn-img img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.dest-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      transparent 100%);
  color: #fff;
  z-index: 2;
}

.dest-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(234, 179, 8, 0.9);
  color: #000;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
}

.dest-card__info h3 {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 300;
}

/* Glass border on hover */
.dest-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

.dest-card:hover::after {
  border-color: rgba(255, 255, 255, 0.25);
}

/* â”€â”€ Packages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#packages {
  background: linear-gradient(to bottom,
      rgba(15, 23, 42, 1) 0%,
      var(--clr-bg) 100%);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

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

.pkg-card {
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.pkg-card .dyn-img {
  border-radius: 0;
  aspect-ratio: 16 / 10;
}

.pkg-card .dyn-img img {
  transition: transform 0.6s ease;
}

.pkg-card:hover .dyn-img img {
  transform: scale(1.08);
}

.pkg-card__body {
  padding: 1.5rem;
}

.pkg-card__title {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}

.pkg-card__duration {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin: 0.4rem 0 0.75rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.pkg-card__desc {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pkg-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.pkg-card__highlights li {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
}

.pkg-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-card__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-primary);
}

.pkg-card__price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  display: block;
}

.pkg-card__footer .btn {
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  background: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.pkg-card__footer .btn:hover {
  background: var(--clr-primary);
  transform: translateY(-2px);
  text-decoration: none;
}

.text-center .btn--outline {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}

.text-center .btn--outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* â”€â”€ Why Choose Us â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#why-us {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 179, 8, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.why-card__icon {
  font-size: 2rem;
  display: block;
  flex-shrink: 0;
}

.why-card__content {
  display: flex;
  flex-direction: column;
}

.why-card h3 {
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 1.15rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

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

  .why-card {
    padding: 1rem;
    gap: 0.75rem;
    border-radius: 16px;
  }

  .why-card:nth-child(1) {
    grid-column: 1 / -1;
  }

  .why-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .why-card__icon {
    font-size: 1.5rem;
  }

  .why-card h3 {
    font-size: 0.95rem;
  }

  .why-card p {
    font-size: 0.75rem;
  }
}

/* â”€â”€ Gallery â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#gallery {
  background: linear-gradient(to bottom,
      var(--clr-bg) 0%,
      rgba(15, 23, 42, 0.5) 50%,
      var(--clr-bg) 100%);
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 8rem);
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .gallery-grid {
    gap: 3rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-item.hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .gallery-item.hide-desktop {
    display: none !important;
  }
}

.gallery-item .dyn-img {
  border-radius: 0;
  position: relative;
  overflow: hidden;
  height: auto;
}

.gallery-item .dyn-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0)) scale(1.3);
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
}

.gallery-item:hover .dyn-img img {
  transform: translateY(var(--parallax-y, 0)) scale(1.4);
  filter: brightness(1.15);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__caption {
  transform: translateY(0);
}

/* Glass border on gallery items */
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.gallery-item:hover::after {
  border-color: rgba(255, 255, 255, 0.25);
}

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#testimonials {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.testimonial-card__quote {
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(234, 179, 8, 0.3);
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--clr-placeholder);
  flex-shrink: 0;
  border: 2px solid rgba(234, 179, 8, 0.4);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__head h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}

.testimonial-card__loc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.testimonial-card__stars {
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-style: italic;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-card__trip {
  font-size: 0.8rem;
  color: var(--clr-primary);
  font-weight: 600;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 50px;
}

/* â”€â”€ Inquiry Form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#inquiry {
  position: relative;
  overflow: hidden;
}



#inquiry .inquiry-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) blur(2px);
}



.inquiry-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 48px rgba(0, 0, 0, 0.4);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(234, 179, 8, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.form-actions .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-actions .btn--primary {
  background: #fff;
  color: #000;
  border: none;
}

.form-actions .btn--primary:hover {
  background: var(--clr-primary);
  transform: translateY(-2px);
}

.form-actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.form-actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.form-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.form-note a {
  color: var(--clr-primary);
}

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

  .inquiry-form {
    padding: 1.5rem;
  }
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#footer {
  background: linear-gradient(to bottom,
      var(--clr-bg) 0%,
      rgba(10, 10, 15, 1) 100%);
  color: rgba(255, 255, 255, 0.6);
  padding: 5rem 0 1.5rem;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer__col h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer__col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer__col>p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer__col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer__col li {
  margin-bottom: 0.6rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.4);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* â”€â”€ Page Header (sub-pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-header {
  position: relative;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 8rem 1.5rem 4rem; /* More padding, accounting for fixed nav */
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(0, 150, 136, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(0, 150, 136, 0.04), transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--clr-heading);
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  word-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: var(--clr-text-muted);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Packages Filter Bar ───────────────────────────────────── */
.packages-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.dark-mode .packages-filter-bar {
  background: rgba(18, 18, 18, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 250px;
  position: relative;
}

.filter-icon {
  position: absolute;
  left: 1rem;
  color: var(--clr-text-muted);
  pointer-events: none;
}

.filter-input,
.filter-select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
}

.filter-input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.15);
}

.filter-select {
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.dark-mode .filter-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}


/* â”€â”€ Modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__content {
  background-color: var(--clr-bg);
  margin: auto;
  padding: 2rem;
  border: 1px solid var(--clr-border);
  width: 90%;
  max-width: 700px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  color: var(--clr-text);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__close:hover,
.modal__close:focus {
  color: var(--clr-primary);
  text-decoration: none;
}

.pkg-modal-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.pkg-modal-title {
  font-size: 2rem;
  color: var(--clr-heading);
  margin-bottom: 0.5rem;
}

.pkg-modal-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--clr-primary);
}

.pkg-modal-desc {
  white-space: pre-wrap;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.pkg-card {
  cursor: pointer;
}

/* â”€â”€ Floating WhatsApp Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-float {
  display: none;
  /* hidden on desktop */
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.7),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: flex;
    bottom: 1.25rem;
    left: 1.25rem;
    right: auto;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* â”€â”€ Trust Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-bar {
  background: var(--clr-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-bar__item span:first-child {
  font-size: 1.5rem;
}

.trust-bar__item strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 600px) {
  .trust-bar {
    padding: 1rem 0;
  }

  .trust-bar__inner {
    gap: 0.5rem 1.5rem;
    /* 0.5rem vertical gap between lines, 1.5rem horizontal gap */
  }

  .trust-bar__item {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .trust-bar__item span:first-child svg {
    width: 20px;
    height: 20px;
  }
}

/* â”€â”€ Sticky Bottom CTA Bar (tour pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.875rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sticky-cta__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.sticky-cta__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
}

.sticky-cta .btn {
  background: var(--clr-accent);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s;
}

.sticky-cta .btn:hover {
  background: var(--clr-accent-dark);
  text-decoration: none;
}

@media (max-width: 600px) {
  .sticky-cta__info {
    gap: 0.5rem;
  }

  .sticky-cta__title {
    font-size: 0.85rem;
  }

  .sticky-cta .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* â”€â”€ Recently Booked Toast â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-toast {
  position: fixed;
  bottom: calc(6rem + 10px);
  right: 1.5rem;
  left: auto;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(220, 38, 38, 0.15) 40%,
      rgba(249, 115, 22, 0.15) 70%,
      rgba(234, 179, 8, 0.15) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 997;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(120%);
  opacity: 0;
  transition:
    transform 1s ease-out,
    opacity 0.8s ease-out;
  max-width: 360px;
}

.booking-toast.show {
  transform: translateX(0);
  opacity: 1;
  /* In animation (faster, bouncy) */
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.5s ease-out;
}

.booking-toast__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.booking-toast__icon svg {
  width: 24px;
  height: 24px;
}

.booking-toast__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.booking-toast__text strong {
  color: #fff;
}

.booking-toast__time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.booking-toast__pill {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@keyframes eye-blink {

  0%,
  100% {
    transform: scaleY(1);
  }

  25% {
    transform: scaleY(0.1);
  }

  50% {
    transform: scaleY(1);
  }

  75% {
    transform: scaleY(0.1);
  }
}

.eye-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}

.eye-wrapper.is-blinking {
  animation: eye-blink 0.4s ease-in-out;
}

.booking-toast__close {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  flex-shrink: 0;
}

.booking-toast__close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.booking-toast__timer {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  /* Start from the top */
}

.booking-toast__timer circle {
  fill: none;
  stroke-width: 2;
}

.timer-bg {
  stroke: rgba(255, 255, 255, 0.15);
}

.timer-progress {
  stroke: var(--clr-primary, #ff5722);
  stroke-dasharray: 63;
  /* 2 * PI * 10 = ~62.8 */
  stroke-dashoffset: 63;
  /* Animates down to 0 */
}

.booking-toast.show .timer-progress {
  transition: stroke-dashoffset 7s linear;
  stroke-dashoffset: 0;
}

.booking-toast__close-icon {
  font-size: 10px;
  color: #fff;
  z-index: 1;
}

@media (max-width: 768px) {
  .booking-toast {
    bottom: 22vh;
    right: 1rem;
    left: auto;
    max-width: 310px;
    padding: 0.75rem 1rem;
  }

  .booking-toast__text {
    font-size: 0.9rem;
  }

  .booking-toast__time {
    font-size: 0.8rem;
  }

  .booking-toast__icon svg {
    width: 24px;
    height: 24px;
  }

  .booking-toast__close {
    width: 28px;
    height: 28px;
  }

  .booking-toast__timer {
    width: 28px;
    height: 28px;
  }
}

/* â”€â”€ Limited Slots Badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge-limited {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* â”€â”€ Price Anchoring â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.price-original {
  text-decoration: line-through;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.price-save {
  display: inline-block;
  background: rgba(52, 211, 153, 0.15);
  color: var(--clr-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}

/* â”€â”€ Section Title Accent â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--clr-primary);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.section-title-centered::after {
  margin-inline: auto;
}

/* â”€â”€ Page header fix for fixed nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-header {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding-top: 80px;
}

/* ══════════════════════════════════════════════════
   POPULAR DESTINATIONS HOVER LIST
   ══════════════════════════════════════════════════ */
.desktop-destinations {
  display: none;
  /* hidden on mobile by default */
}

.mobile-destinations {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  /* Pull out of container to span full width */
  margin-left: calc(-1 * clamp(1.5rem, 5vw, 4rem));
  margin-right: calc(-1 * clamp(1.5rem, 5vw, 4rem));
  /* Ensure content aligns with headings */
  padding: 0 clamp(1.5rem, 5vw, 4rem) 1.5rem clamp(1.5rem, 5vw, 4rem);
  scroll-padding-left: clamp(1.5rem, 5vw, 4rem);
  scroll-padding-right: clamp(1.5rem, 5vw, 4rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: none;
  /* For custom rubberband */
}

.mobile-destinations::-webkit-scrollbar {
  display: none;
}

.desktop-only-header {
  display: none;
}

.mobile-only-header {
  display: block;
}

.dest-card--mobile {
  flex: 0 0 85%;
  scroll-snap-align: start;
  aspect-ratio: auto;
  box-shadow: none;
  background: transparent;
  transform-origin: left center;
  /* For rubberband scale effect */
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dest-card--mobile::after {
  display: none !important;
}

.dest-card--mobile .dyn-img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  height: auto;
}

.dest-card--mobile .dyn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-card--mobile .dest-card__info {
  position: static;
  background: transparent;
  padding: 1rem 0 0 0;
  color: var(--clr-text);
}

.dest-card--mobile .dest-card__info h3 {
  color: var(--clr-heading);
  font-size: 1.15rem;
  font-weight: 300;
  margin-top: 0;
}

.dest-card--mobile .dest-card__tag {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only-header {
    display: block;
  }

  .mobile-only-header {
    display: none;
  }

  .mobile-destinations {
    display: none !important;
  }

  .desktop-destinations {
    display: block;
    margin-top: 4rem;
  }

  .dest-hover-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dest-hover-list {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .dest-hover-item {
    font-size: 2.5rem;
    font-family: "DM Sans", Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    line-height: 1;
  }

  .dest-hover-item:hover {
    color: #ffffff;
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  }

  .dest-hover-images {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
  }

  .img-group {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }

  .img-group.active {
    opacity: 1;
  }

  .dest-hover-img {
    position: absolute;
    width: 530px;
    max-width: min(530px, 30vw);
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .img-group.active .dest-hover-img {
    transform: scale(1);
  }
}

/* --- Combine Retreat Section --- */
.cr-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* Make it large */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
}

.cr-overlay {
  position: absolute;
  inset: 0;
  /* Top is transparent to show the landscape, bottom gets dark to support the glass bar */
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.cr-container {
  position: relative;
  z-index: 2;
  padding-top: 15vh;
  padding-bottom: 5rem;
}

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

.cr-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.cr-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cr-feature {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1.1;
}

.cr-plus {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 0.2em;
  font-weight: 400;
}

/* Glass Bar */
.cr-glass-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 20, 20, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cr-glass-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 3rem 1.5rem;
  gap: 3rem;
}

@media (min-width: 992px) {
  .cr-glass-grid {
    grid-template-columns: 1.2fr 2fr;
    padding: 0;
    gap: 0;
  }
}

.cr-desc {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  opacity: 0.95;
}

@media (min-width: 992px) {
  .cr-desc {
    padding: 3rem 2rem 3rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.cr-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .cr-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .cr-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.cr-step {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .cr-step {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cr-step:last-child {
    border-right: none;
  }
}

.cr-step__number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cr-step__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.cr-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: pre-wrap;
}

/* ── Why Travel With Us (Glassmorphic) ── */
.why-glass-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 0;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.why-glass__bg-wrap {
  position: fixed;
  top: -8%;
  left: -8%;
  width: 116vw;
  height: 116vh;
  height: 116svh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.why-glass__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  animation: whyBreathing 20s infinite ease-in-out;
  will-change: transform;
}

@keyframes whyBreathing {
  0% {
    transform: scale(1.08);
    filter: contrast(1) brightness(100%);
  }

  50% {
    transform: scale(1.18);
    filter: contrast(1.04) brightness(103%);
  }

  100% {
    transform: scale(1.08);
    filter: contrast(1) brightness(100%);
  }
}

.why-glass__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.why-glass__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding-bottom: 0;
}

.why-glass__header {
  margin-top: clamp(0rem, 5vh, 2rem);
  text-align: left;
  align-self: flex-start;
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.why-glass__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: left;
}

.why-glass__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  align-items: flex-start;
  text-align: left;
}

.why-glass__list-item {
  opacity: 0.9;
}

.why-glass__bottom {
  margin-top: auto;
  background: linear-gradient(-171deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(12px) url(#glass-dispersion);
  -webkit-backdrop-filter: blur(12px) url(#glass-dispersion);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.why-glass__desc {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
}

.why-glass__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.why-glass__step {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.why-glass__step:last-child {
  border-right: none;
}

.why-glass__step:hover {
  background: rgba(255, 255, 255, 0.05);
}

.why-glass__step-top {
  margin-bottom: 2rem;
}

.why-glass__step-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.why-glass__step-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.why-glass__step-title {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin-top: auto;
}

@media (max-width: 992px) {
  .why-glass__bottom {
    grid-template-columns: 1fr;
  }

  .why-glass__desc {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
  }

  .why-glass__steps {
    grid-template-columns: 1fr 1fr;
  }

  .why-glass__step {
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .why-glass__step:nth-child(even) {
    border-right: none;
  }

  .why-glass__step:nth-child(3),
  .why-glass__step:nth-child(4) {
    border-bottom: none;
  }
}
/* %% Package Details Back Button %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
.pkg-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: all 0.3s ease;
}

.pkg-back-btn .material-symbols-outlined {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.pkg-back-btn:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.1);
}

.pkg-back-btn:hover .material-symbols-outlined {
  transform: translateX(-4px);
}


/* %% Packages Horizontal Card Design %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
.pkg-h-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: #0b1114; /* Deep teal/dark bg */
  padding: 1rem;
  border-radius: 12px;
}
@media (min-width: 900px) {
  .pkg-h-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px; /* Creates the border lines */
    background-color: #1a2529; /* Border color */
    border: 1px solid #1a2529;
    padding: 0;
  }
}

.pkg-h-card {
  display: flex;
  flex-direction: column-reverse;
  background-color: #0b1114;
  color: #ffffff;
  padding: 2rem;
  transition: background-color 0.3s;
}
@media (min-width: 600px) {
  .pkg-h-card {
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
  }
}

.pkg-h-card:hover {
  background-color: #10181c;
}

.pkg-h-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-h-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.pkg-h-card__price {
  font-size: 0.85rem;
  color: #8b99a0;
  margin-bottom: 2rem;
}
.pkg-h-card__price strong {
  font-size: 1.1rem;
  color: #ffffff;
}

.pkg-h-card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #aebbc1;
}

.pkg-h-card__details li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pkg-h-card__details .icon {
  font-size: 1rem;
  color: #5c6b73;
}

.pkg-h-card__trust .stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.pkg-h-card__trust strong {
  color: #ffffff;
}

.pkg-h-card__btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #132b31;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.3s;
}
.pkg-h-card__btn:hover {
  background-color: #1a3c44;
}
.pkg-h-card__btn--accent {
  background-color: #f59e0b;
  color: #000000;
}
.pkg-h-card__btn--accent:hover {
  background-color: #d97706;
}

.pkg-h-card__image {
  flex: 0 0 160px; /* Fixed width for image */
  align-self: center;
}
@media (min-width: 600px) {
  .pkg-h-card__image {
    flex: 0 0 200px;
  }
}
.pkg-h-card__image .dyn-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover;
}
.pkg-h-card__image img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

