/* =============================================================
   TRAVEL WITH CHANAKA — design tokens
   ============================================================= */
:root {
  /* color */
  --ink-900: #071926;
  /* deep abyssal ocean blue — hero overlay / dark bg */
  --ink-700: #0E293C;
  /* deep sea blue, secondary surfaces */
  --sand-100: #F4EFE6;
  /* warm sand ivory — text on dark, light surfaces */
  --gold-500: #E9C46A;
  /* sunset/beach sand gold — primary accent */
  --coral-500: #E76F51;
  /* warm beach sunset coral — secondary accent / CTA */
  --seafoam-300: #2EC4B6;
  /* bright seafoam/turquoise */
  --line: rgba(244, 239, 230, 0.18);

  /* type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --header-h: 88px;
  --container: 1340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--sand-100);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body {
    zoom: 0.8;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

/* =============================================================
   BUTTONS - Liquid Glassmorphic Design System
   ============================================================= */
.btn,
.btn--solid,
.btn--glass,
.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(244, 239, 230, 0.12) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  color: var(--sand-100) !important;
  border: 1px solid rgba(244, 239, 230, 0.25) !important;
  cursor: pointer;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px rgba(7, 25, 38, 0.15),
    0 8px 32px -4px rgba(7, 25, 38, 0.3) !important;
  text-shadow: 0 1px 2px rgba(7, 25, 38, 0.15);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn--solid:hover,
.btn--glass:hover,
.btn--ghost:hover {
  background: rgba(244, 239, 230, 0.22) !important;
  border-color: rgba(244, 239, 230, 0.5) !important;
  color: var(--sand-100) !important;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(7, 25, 38, 0.1),
    0 12px 36px -4px rgba(7, 25, 38, 0.4) !important;
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  /* transparent over the hero video */
  background: linear-gradient(to bottom, rgba(7, 25, 38, 0.55), rgba(7, 25, 38, 0));
  transition:
    top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    right 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s ease,
    border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header--scrolled {
  top: 16px;
  left: 24px;
  right: 24px;
  max-width: var(--container);
  margin: 0 auto;
  height: 68px;
  background: rgba(7, 25, 38, 0.45);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 100px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.12),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4),
    0 12px 32px -4px rgba(7, 25, 38, 0.5);
}

@media (max-width: 860px) {
  .site-header--scrolled {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 60px;
  }
}

.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.logo span {
  font-style: italic;
  color: var(--gold-500);
}

.main-nav {
  display: flex;
  gap: 2.25rem;
  margin-right: auto;
  margin-left: 3rem;
}

.main-nav a {
  font-size: 0.92rem;
  color: var(--sand-100);
  opacity: 0.85;
  position: relative;
  padding-bottom: 6px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
  color: var(--gold-500);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--sand-100);
  display: block;
}

/* =============================================================
   HERO — entrance animations on page load
   ============================================================= */
.hero-loading .site-header {
  animation: headerSlideDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-loading .hero-bg {
  animation: bgFadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-loading .hero-window {
  animation: windowFall 1.3s cubic-bezier(0.34, 1.35, 0.64, 1) both;
  animation-delay: 0.2s;
}

.hero-loading .hero-side-text--left {
  animation: sideTextLeftFall 1.3s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.4s;
}

.hero-loading .hero-side-text--right {
  animation: sideTextRightFall 1.3s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.5s;
}

.hero-loading .hero-info-text--left {
  animation: infoTextLeftFall 1.3s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.6s;
}

.hero-loading .hero-info-text--right {
  animation: infoTextRightFall 1.3s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.7s;
}

.hero-loading .hero-window__hint {
  animation: hintFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.9s;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bgFadeIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes windowFall {
  from {
    opacity: 0;
    transform: translateY(-80px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sideTextLeftFall {
  from {
    opacity: 0;
    transform: translateY(-50%) translateY(-40px) translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateY(0) translateX(0);
  }
}

@keyframes sideTextRightFall {
  from {
    opacity: 0;
    transform: translateY(-50%) translateY(-40px) translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateY(0) translateX(0);
  }
}

@keyframes infoTextLeftFall {
  from {
    opacity: 0;
    transform: translateY(-50%) translateY(-20px) translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateY(0) translateX(0);
  }
}

@keyframes infoTextRightFall {
  from {
    opacity: 0;
    transform: translateY(-50%) translateY(-20px) translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateY(0) translateX(0);
  }
}

@keyframes hintFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}

/* =============================================================
   HERO — scroll-pinned postcard-window expansion
   ============================================================= */
.hero-scroll-wrapper {
  position: relative;
  height: 250vh;
  /* scroll distance that drives the animation */
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--ink-900);
}

/* full-bleed background slideshow */
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: opacity;
}

.hero-bg__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, filter, transform;
}

.hero-bg__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-bg__slide.is-blinking-out {
  z-index: 1;
  animation: softBlinkOut 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-bg__slide.is-blinking-in {
  z-index: 2;
  visibility: visible;
  animation: softBlinkIn 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes softBlinkOut {
  0% {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1);
  }
  35% {
    opacity: 0.3;
    filter: brightness(0.5);
  }
  100% {
    opacity: 0;
    filter: brightness(0.3);
    transform: scale(1.03);
  }
}

@keyframes softBlinkIn {
  0% {
    opacity: 0;
    filter: brightness(0.3);
    transform: scale(1.04);
  }
  60% {
    opacity: 0.75;
    filter: brightness(0.85);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1);
  }
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom,
      rgba(7, 25, 38, 0.45) 0%,
      rgba(7, 25, 38, 0.25) 45%,
      rgba(7, 25, 38, 0.75) 100%);
}

/* small postcard video window + its caption/hint */
.hero-window-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  z-index: 2;
  pointer-events: none;
}

.hero-window-container {
  position: relative;
  width: 240px;
  height: 320px;
  margin-top: -24px;
  margin-left: -48px;
  /* Shift a little left and up towards the uneven corner of Sigiriya rock */
}

.hero-side-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sand-100);
  will-change: opacity, transform;
}

.hero-side-text--left {
  right: 100%;
  margin-right: 25px;
}

.hero-side-text--right {
  left: 100%;
  margin-left: 25px;
}

@media (max-width: 860px) {
  .hero-scroll-wrapper {
    height: auto !important;
    min-height: 78vh;
    position: relative;
    overflow: hidden;
  }

  .hero-stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--header-h) + 6px);
    padding-bottom: 1.5rem;
    gap: 0.65rem;
    box-sizing: border-box;
  }

  .hero-window-wrap {
    position: relative !important;
    inset: auto !important;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    pointer-events: auto;
    opacity: 1 !important;
  }

  .hero-window-container {
    width: clamp(148px, 42vw, 185px);
    height: clamp(195px, 55vw, 245px);
    margin: 0 auto;
    position: relative;
  }

  .hero-window {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6), 0 0 20px rgba(233, 196, 110, 0.15);
  }

  .hero-side-text {
    font-size: clamp(1.05rem, 3.6vw, 1.35rem);
    letter-spacing: 0.05em;
    opacity: 1 !important;
  }

  .hero-side-text--left {
    margin-right: clamp(6px, 2vw, 12px);
  }

  .hero-side-text--right {
    margin-left: clamp(6px, 2vw, 12px);
  }

  .hero-window__hint {
    display: none;
  }
}

/* Side Info Text Blocks */
.hero-info-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 220px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  will-change: opacity, transform;
}

.hero-info-text--left {
  right: 100%;
  margin-right: 200px;
  text-align: right;
  align-items: flex-end;
}

.hero-info-text--right {
  left: 100%;
  margin-left: 260px;
  text-align: left;
  align-items: flex-start;
}

.hero-info-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin: 0;
}

.hero-info-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0.55;
  margin: 0;
}

.hero-info-line {
  width: 24px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.3;
  margin: 0.1rem 0;
}

@media (max-width: 1250px) {
  .hero-info-text {
    display: none;
  }
}

.hero-window {
  position: relative;
  width: 240px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  transform-origin: center center;
  will-change: transform, border-radius;
  pointer-events: auto;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
}

.hero-window:hover {
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(233, 196, 106, 0.25);
}

.hero-window video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-window:hover video {
  transform: scale(1.05);
}


.hero-window__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--sand-100);
  opacity: 0.7;
  will-change: opacity, transform;
}

.hero-window__hint span {
  display: inline-block;
  margin-left: 4px;
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* headline text, revealed as scroll progresses */
.hero-text {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--sand-100);
}

.hero-text h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-500);
}

@media (min-width: 861px) {
  .hero-text {
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 400px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-text p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 860px) {
  .hero-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 92%;
    max-width: 380px;
    margin: 0 auto;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 3;
  }

  .hero-text h1 {
    font-size: clamp(1.15rem, 4.5vw, 1.4rem);
    line-height: 1.25;
    margin: 0 0 0.4rem;
  }

  .hero-text p {
    font-size: clamp(0.74rem, 2.9vw, 0.82rem);
    line-height: 1.45;
    margin: 0 0 0.8rem;
    max-width: 36ch;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    width: 100%;
  }

  .hero-actions .btn {
    padding: 0.6rem 1.12rem;
    font-size: 0.78rem;
  }
}

.hero-text .btn--solid,
.site-header .btn--ghost,
.btn--glass,
.btn--solid {
  background: rgba(244, 239, 230, 0.12) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  color: var(--sand-100) !important;
  font-weight: 600;
  border: 1px solid rgba(244, 239, 230, 0.25) !important;
  border-radius: 999px !important;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px rgba(7, 25, 38, 0.15),
    0 8px 32px -4px rgba(7, 25, 38, 0.3) !important;
  text-shadow: 0 1px 2px rgba(7, 25, 38, 0.15) !important;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.hero-text .btn--solid:hover,
.site-header .btn--ghost:hover,
.btn--glass:hover,
.btn--solid:hover {
  background: rgba(244, 239, 230, 0.22) !important;
  border-color: rgba(244, 239, 230, 0.5) !important;
  color: var(--sand-100) !important;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(7, 25, 38, 0.1),
    0 12px 36px -4px rgba(7, 25, 38, 0.4) !important;
}

/* =============================================================
   RESPONSIVE & MOBILE NAVIGATION SYSTEM
   ============================================================= */
.nav-toggle span {
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .site-header__inner .btn--ghost,
  .site-header .desktop-nav-cta {
    display: none !important;
  }

  .site-header.is-open {
    background: rgba(7, 25, 38, 0.95) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-radius: 28px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(244, 239, 230, 0.18) !important;
  }

  .site-header.is-open .main-nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.25rem 1.5rem;
    background: rgba(7, 25, 38, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(244, 239, 230, 0.15);
    border-radius: 24px;
    gap: 0.85rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75);
    animation: mobileMenuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 100;
  }

  .site-header.is-open .main-nav a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--sand-100);
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid rgba(244, 239, 230, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease, opacity 0.2s ease;
  }

  .site-header.is-open .main-nav a:hover,
  .site-header.is-open .main-nav a:focus {
    color: var(--gold-500);
    opacity: 1;
  }

  .site-header.is-open .main-nav a:last-child {
    border-bottom: none;
  }

  .site-header.is-open .main-nav .mobile-nav-cta {
    display: inline-flex !important;
    margin-top: 0.5rem;
    justify-content: center;
    align-items: center;
    background: var(--gold-500) !important;
    color: var(--ink-900) !important;
    font-weight: 700 !important;
    border-radius: 99px !important;
    padding: 0.8rem 1.5rem !important;
    text-align: center;
    font-size: 0.95rem !important;
  }

  @keyframes mobileMenuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-12px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .site-hero-banner {
    padding-top: clamp(140px, 18vw, 175px) !important;
  }

  .hero-window {
    width: 160px;
    height: 210px;
  }
}

@media (max-width: 860px) and (max-height: 680px) {
  .hero-window-container,
  .hero-window {
    width: clamp(135px, 38vw, 160px);
    height: clamp(175px, 50vw, 210px);
  }

  .hero-text h1 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }

  .hero-text p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
}

/* respect reduced-motion: skip the pin/scroll choreography,
   hero.js also checks this and short-circuits the JS animation */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-window,
  .hero-text,
  .hero-bg,
  .hero-window__hint span,
  .scroll-reveal,
  .destination-card.scroll-reveal,
  .destination-card.scroll-reveal .destination-card__image,
  .gallery-track,
  .gallery-marquee.scroll-reveal {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =============================================================
   SCROLL REVEAL & SLIDE-IN FROM LEFT & RIGHT ANIMATIONS
   ============================================================= */
html,
body {
  overflow-x: clip;
}

/* Base vertical scroll reveal for text intros and single items */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Explicit Slide-in from LEFT */
.scroll-reveal-left,
.overview-showcase-grid > div:first-child,
.site-overview-grid > div:first-child,
.site-detail-card:nth-child(odd),
.tips-luxury-grid .tip-card-luxury:nth-child(odd),
.destinations-grid .destination-card:nth-child(odd),
.journeys-grid .journey-card:nth-child(odd),
.stories-grid .story-card:nth-child(odd) {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

/* Explicit Slide-in from RIGHT */
.scroll-reveal-right,
.overview-showcase-grid > div:last-child,
.site-overview-grid > div:last-child,
.site-detail-card:nth-child(even),
.tips-luxury-grid .tip-card-luxury:nth-child(even),
.destinations-grid .destination-card:nth-child(even),
.journeys-grid .journey-card:nth-child(even),
.stories-grid .story-card:nth-child(even) {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

/* Multi-column 3-card Grids (Reservoirs, Natural Marvels, Heritage Collection) */
.scenic-grid .scenic-card:nth-child(3n + 1),
.heritage-grid .heritage-card:nth-child(3n + 1),
.destinations-grid .destination-card:nth-child(3n + 1) {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

.scenic-grid .scenic-card:nth-child(3n + 2),
.heritage-grid .heritage-card:nth-child(3n + 2),
.destinations-grid .destination-card:nth-child(3n + 2) {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

.scenic-grid .scenic-card:nth-child(3n + 3),
.heritage-grid .heritage-card:nth-child(3n + 3),
.destinations-grid .destination-card:nth-child(3n + 3) {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

/* Base classes for cards */
.heritage-card,
.site-detail-card,
.scenic-card,
.tip-card-luxury {
  opacity: 0;
  will-change: opacity, transform;
}

/* Revealed States for all slide elements */
.scroll-reveal.revealed,
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed,
.destination-card.revealed,
.journey-card.revealed,
.story-card.revealed,
.heritage-card.revealed,
.site-detail-card.revealed,
.scenic-card.revealed,
.tip-card-luxury.revealed,
.overview-showcase-grid > div.revealed,
.site-overview-grid > div.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Staggering delays across cards */
.heritage-grid .heritage-card:nth-child(1),
.destinations-grid .destination-card:nth-child(1),
.sites-grid .site-detail-card:nth-child(1),
.scenic-grid .scenic-card:nth-child(1),
.tips-luxury-grid .tip-card-luxury:nth-child(1) {
  transition-delay: 0.04s;
}

.heritage-grid .heritage-card:nth-child(2),
.destinations-grid .destination-card:nth-child(2),
.sites-grid .site-detail-card:nth-child(2),
.scenic-grid .scenic-card:nth-child(2),
.tips-luxury-grid .tip-card-luxury:nth-child(2) {
  transition-delay: 0.12s;
}

.heritage-grid .heritage-card:nth-child(3),
.destinations-grid .destination-card:nth-child(3),
.sites-grid .site-detail-card:nth-child(3),
.scenic-grid .scenic-card:nth-child(3),
.tips-luxury-grid .tip-card-luxury:nth-child(3) {
  transition-delay: 0.20s;
}

.heritage-grid .heritage-card:nth-child(4),
.destinations-grid .destination-card:nth-child(4),
.tips-luxury-grid .tip-card-luxury:nth-child(4) {
  transition-delay: 0.28s;
}

/* =============================================================
   PAGE SECTIONS & CONTAINER
   ============================================================= */
.section {
  padding: 6rem 1.5rem;
  position: relative;
  background: var(--ink-900);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.section-header-wrap .section-intro {
  margin-bottom: 0;
}

.section-action {
  flex-shrink: 0;
  margin-bottom: 0.15rem;
}

@media (max-width: 768px) {
  .section-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .section-action {
    margin-top: 0.25rem;
    margin-bottom: 0;
  }
}

.section-intro {
  max-width: 650px;
  margin-bottom: 4.5rem;
}

.eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--sand-100);
  margin: 0 0 0.85rem;
}

.section-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--sand-100);
  opacity: 0.88;
  margin: 0;
  max-width: 620px;
}

/* =============================================================
   DESTINATIONS SECTION styling
   ============================================================= */
.section--destinations {
  border-top: 1px solid var(--line);
  padding: 4.8rem 1.5rem;
}

.section--destinations .section-header-wrap {
  margin-bottom: 2.8rem;
}

.section--destinations .eyebrow {
  font-size: 0.82rem;
  margin-bottom: 0.68rem;
}

.section--destinations .section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 0.68rem;
}

.section--destinations .section-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  max-width: 540px;
  opacity: 0.88;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.08rem;
}

@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.88rem;
    padding-bottom: 1rem;
    margin-left: -5vw;
    margin-right: -5vw;
    padding-left: 5vw;
    padding-right: 5vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .destinations-grid .destination-card {
    flex: 0 0 80vw;
    max-width: 256px;
    scroll-snap-align: center;
    height: 320px;
  }
}

.destination-card {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  height: 352px;
  background: var(--ink-700);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.35);
}

.destination-card__image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.destination-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .destination-card__image {
  transform: scale(1.08);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(7, 25, 38, 0.1) 0%,
      rgba(7, 25, 38, 0.45) 50%,
      rgba(7, 25, 38, 0.95) 100%);
  z-index: 1;
}

.destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.08rem;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.destination-card__title {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--sand-100);
  margin: 0 0 0.6rem;
}

.destination-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .destination-card__desc {
  opacity: 0.92;
  max-height: 120px;
  margin-top: 0.5rem;
}

/* =============================================================
   GALLERY SECTION (Staggered Rotating Marquee)
   ============================================================= */
.section--gallery {
  padding: 4rem 0;
  background: var(--ink-900);
  overflow: hidden;
  border-top: 1px solid var(--line);
  position: relative;
}

.gallery-marquee {
  width: 80%;
  max-width: var(--container);
  margin: 0 auto;
  height: 380px;
  /* Constrained height to crop the top/bottom corners */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .gallery-marquee {
    width: 90%;
  }
}

.gallery-track {
  display: flex;
  gap: 0;
  height: 440px;
  /* Taller than container to force overlap out of bounds */
  width: max-content;
  animation: marqueeFlow 65s linear infinite;
  will-change: transform;
}



@keyframes marqueeFlow {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.gallery-col {
  width: 170px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin: 0 -5px;
  /* Reduced gap horizontally for a tighter interlocking fit */
  position: relative;
  z-index: 2;
}

.gallery-col--double {
  justify-content: space-between;
  /* Top and bottom rows */
}

.gallery-col--single {
  justify-content: center;
  /* Middle row */
}

/* Diamond shape containers */
.gallery-item {
  width: 170px;
  height: 170px;
  transform: rotate(45deg);
  border-radius: 0;
  /* Sharp cornered diamond squares */
  overflow: hidden;
  border: 3px solid var(--line);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  background: var(--ink-700);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, border-color, box-shadow;
  cursor: pointer;
}

.gallery-item:hover {
  border-color: var(--gold-500);
  box-shadow: 0 20px 48px rgba(233, 196, 106, 0.25);
  transform: rotate(45deg) scale(1.06);
}

.gallery-item__inner {
  width: 100%;
  height: 100%;
  /* Counter-rotate the image container to keep the image upright */
  transform: rotate(-45deg) scale(1.48);
  overflow: hidden;
}

.gallery-item__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item__inner img {
  transform: scale(1.1);
}

@media (max-width: 860px) {
  .section--gallery {
    padding: 2rem 0;
  }

  .gallery-marquee {
    padding: 0;
    height: 250px;
  }

  .gallery-track {
    height: 290px;
  }

  .gallery-col {
    width: 110px;
    margin: 0 -3px;
  }

  .gallery-item {
    width: 110px;
    height: 110px;
    border-radius: 0;
    border-width: 2px;
  }
}

/* =============================================================
   JOURNEYS SECTION styling
   ============================================================= */
.section--journeys {
  background: var(--ink-700);
  border-top: 1px solid var(--line);
  position: relative;
  padding: 4.8rem 1.5rem;
}

.section--journeys .section-header-wrap {
  margin-bottom: 2.8rem;
}

.section--journeys .section-title {
  font-size: clamp(1.28rem, 2.5vw, 1.84rem);
  margin-bottom: 0.68rem;
}

.section--journeys .section-desc {
  font-size: clamp(0.7rem, 1.4vw, 0.76rem);
  max-width: 464px;
}

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

@media (max-width: 1024px) {
  .journeys-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 1.6rem;
  }

  .journeys-grid--slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.75rem 1.25rem 1.5rem;
    margin: 0 -1.5rem;
    scrollbar-width: none;
  }
  .journeys-grid--slider::-webkit-scrollbar {
    display: none;
  }
  .journeys-grid--slider .journey-card {
    flex: 0 0 78vw;
    max-width: 310px;
    scroll-snap-align: start;
    margin: 0;
    padding: 1.35rem 1.15rem;
    border-radius: 14px;
  }

  .journeys-grid--slider .journey-card__duration {
    font-size: 0.76rem;
    padding: 0.25rem 0.6rem;
  }

  .journeys-grid--slider .journey-card__title {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.45rem;
  }

  .journeys-grid--slider .journey-card__desc {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .journeys-grid--slider .journey-card__highlights {
    margin-bottom: 0.75rem;
    gap: 0.45rem;
  }

  .journeys-grid--slider .journey-card__highlights li {
    font-size: 0.8rem;
    line-height: 1.35;
    padding-left: 1.1rem;
  }

  .journeys-grid--slider .journey-card__highlights li:nth-child(n+3) {
    display: none;
  }

  .journeys-grid--slider .journey-card__tags {
    padding-top: 0.65rem;
    gap: 0.35rem;
  }

  .journeys-grid--slider .badge {
    font-size: 0.66rem;
    padding: 0.2rem 0.5rem;
  }

  .journeys-grid--slider .journey-card__footer {
    margin-top: 0.95rem;
  }

  .journeys-grid--slider .journey-card__footer .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
  }

  /* Re-align unrevealed state for mobile scroll container to animate vertically */
  .journeys-grid--slider .journey-card:nth-child(odd),
  .journeys-grid--slider .journey-card:nth-child(even) {
    transform: translateY(20px);
    opacity: 0;
  }
  .journeys-grid--slider .journey-card.revealed {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

.journey-card {
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.32rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Background image crop container */
.journey-card__bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 15px;
  /* Clip background layer inside the card border */
  overflow: hidden;
  pointer-events: none;
}

/* Card background image layer */
.journey-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  /* Increased opacity to make images clearly visible */
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-card__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(7, 25, 38, 0.15) 0%, rgba(7, 25, 38, 0.6) 100%);
  /* Lighter overlay */
  z-index: 2;
}

/* Ensure text blocks stay above the background layer */
.journey-card__header,
.journey-card__body,
.journey-card__footer {
  position: relative;
  z-index: 3;
}

.journey-card:hover .journey-card__bg {
  opacity: 0.58;
  /* Enhanced visibility on hover */
  transform: scale(1.05);
}

.journey-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 196, 110, 0.4);
  box-shadow: 0 16px 48px -12px rgba(7, 25, 38, 0.5), 0 0 24px rgba(233, 196, 106, 0.15);
}

.journey-card:hover .btn {
  background: rgba(244, 239, 230, 0.25) !important;
  border-color: rgba(244, 239, 230, 0.55) !important;
  color: var(--sand-100) !important;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(7, 25, 38, 0.1),
    0 12px 36px -4px rgba(7, 25, 38, 0.4) !important;
}

.journey-card--highlighted {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, var(--ink-900) 0%, rgba(14, 41, 60, 0.95) 100%);
  box-shadow: 0 12px 36px -8px rgba(233, 196, 110, 0.08);
}

.journey-card__badge-tag {
  position: absolute;
  top: -10px;
  left: 2rem;
  background: var(--gold-500);
  color: var(--ink-900);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.72rem;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(233, 196, 110, 0.2);
}

.journey-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  color: var(--gold-500);
  font-weight: 500;
}

.journey-card__duration {
  background: rgba(244, 239, 230, 0.06);
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  color: var(--sand-100);
  opacity: 0.95;
  font-size: 0.85rem;
  font-weight: 500;
}

.journey-card__price {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.95rem;
}

.journey-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--sand-100);
  margin: 0 0 0.85rem;
}

.journey-card__desc {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--sand-100);
  opacity: 0.9;
  margin: 0 0 1.4rem;
}

.journey-card__highlights {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.journey-card__highlights li {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0.92;
  position: relative;
  padding-left: 1.35rem;
}

.journey-card__highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.95rem;
}

.journey-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand-100);
  opacity: 0.85;
  border: 1px solid var(--line);
  padding: 0.32rem 0.75rem;
  border-radius: 99px;
}

.badge--gold {
  color: var(--gold-500);
  border-color: rgba(233, 196, 110, 0.2);
  opacity: 1;
}

.journey-card__footer {
  margin-top: 2rem;
}

.btn--full {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* =============================================================
   STORIES SECTION styling
   ============================================================= */
.section--stories {
  border-top: 1px solid var(--line);
}

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

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

@media (max-width: 768px) {
  .stories-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.15rem;
    padding-bottom: 1.25rem;
    margin-left: -5vw;
    margin-right: -5vw;
    padding-left: 5vw;
    padding-right: 5vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .stories-grid::-webkit-scrollbar {
    display: none;
  }

  .stories-grid .story-card {
    flex: 0 0 76vw;
    max-width: 340px;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  /* Re-align unrevealed state for mobile scroll container to animate vertically */
  .stories-grid .story-card:nth-child(odd),
  .stories-grid .story-card:nth-child(even) {
    transform: translateY(20px);
    opacity: 0;
  }
  .stories-grid .story-card.revealed {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

.story-card {
  background: var(--ink-700);
  border-radius: 16px;
  padding: 2.5rem 1.85rem;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.story-quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 7.5rem;
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.08;
  pointer-events: none;
}

.story-card__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--sand-100);
  opacity: 0.9;
  margin: 0 0 2.25rem;
}

.story-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sand-100);
  margin: 0 0 0.25rem;
}

.story-card__origin {
  font-size: 0.8rem;
  color: var(--gold-500);
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* =============================================================
   PLAN A TRIP SECTION styling
   ============================================================= */
.section--plan {
  background: linear-gradient(to bottom, var(--ink-900) 0%, var(--ink-700) 100%);
  border-top: 1px solid var(--line);
}

.plan-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .plan-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.plan-info {
  position: sticky;
  top: 4rem;
}

.plan-info__desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--sand-100);
  opacity: 0.8;
  margin: 0 0 3.5rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plan-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.plan-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(233, 196, 110, 0.15);
  color: var(--gold-500);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature__text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sand-100);
  margin: 0 0 0.35rem;
}

.plan-feature__text p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--sand-100);
  opacity: 0.7;
  margin: 0;
}

.plan-form-card {
  background: rgba(14, 41, 60, 0.45);
  border: 1px solid var(--line);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .plan-form-card {
    padding: 2rem 1.5rem;
  }
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

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

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

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sand-100);
  opacity: 0.9;
  letter-spacing: 0.01em;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea,
.builder-form-card input[type="text"],
.builder-form-card input[type="email"],
.builder-form-card input[type="tel"],
.builder-form-card select,
.builder-form-card textarea {
  width: 100%;
  background: rgba(7, 25, 38, 0.45);
  border: 1px solid rgba(244, 239, 230, 0.15);
  border-radius: 8px;
  padding: 0.95rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--sand-100);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-sizing: border-box;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.builder-form-card input:focus,
.builder-form-card select:focus,
.builder-form-card textarea:focus {
  outline: none;
  background: rgba(7, 25, 38, 0.65);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(233, 196, 110, 0.15);
}

.inquiry-form select,
.builder-form-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E9C46A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 16px;
  padding-right: 2.8rem;
  cursor: pointer;
}

.inquiry-form select option,
.builder-form-card select option {
  background-color: #0E293C;
  color: #F4EFE6;
  padding: 12px 14px;
  font-size: 0.95rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.25rem;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--gold-500);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-label span {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--sand-100);
  opacity: 0.8;
  user-select: none;
  transition: color 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked+span {
  color: var(--gold-500);
  opacity: 1;
}

/* =============================================================
   FOOTER styling
   ============================================================= */
.site-footer {
  background: linear-gradient(180deg, rgba(7, 25, 38, 0.72) 0%, rgba(7, 25, 38, 0.88) 100%), url('../images/galle-coastal-sunset.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-top: 1px solid var(--line);
  padding: 4rem 2rem 2.5rem;
  position: relative;
  text-shadow: 0 1px 3px rgba(7, 25, 38, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr;
  gap: 3.5rem;
}

@media (max-width: 860px) {
  .site-footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand__desc {
    max-width: 100%;
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    opacity: 0.85;
  }

  .logo--footer {
    margin-bottom: 0.6rem;
  }

  .footer-title {
    margin-bottom: 0.9rem;
    font-size: 0.76rem;
  }

  .footer-nav {
    gap: 0.75rem;
  }

  .footer-nav a {
    font-size: 0.95rem;
    padding: 0.2rem 0;
    display: inline-block;
    opacity: 0.9;
  }

  .footer-contact-item {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    word-break: break-word;
    opacity: 0.9;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
}

.logo--footer {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-brand__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0.7;
  max-width: 280px;
  margin: 0;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  display: block;
  font-size: 0.82rem;
  color: var(--sand-100);
  opacity: 0.55;
}

.footer-credit {
  display: block;
  font-size: 0.82rem;
  color: var(--sand-100);
  opacity: 0.65;
}

.developer-credit-link {
  color: var(--gold-500);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.developer-credit-link:hover {
  color: #2EC4B6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav a {
  font-size: 0.92rem;
  color: var(--sand-100);
  opacity: 0.75;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold-500);
  opacity: 1;
}

.footer-contact-item {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--sand-100);
  opacity: 0.8;
  margin: 0 0 1rem;
}

.footer-contact-item a {
  color: var(--sand-100);
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--gold-500);
}

.footer-tripadvisor {
  background: rgba(7, 25, 38, 0.65);
  /* Darker backdrop to keep TripAdvisor card readable over bright sand */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244, 239, 230, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tripadvisor-rating__stars {
  color: #00b087;
  /* TripAdvisor green */
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}

.tripadvisor-rating__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sand-100);
}

.tripadvisor-reviews {
  font-size: 0.8rem;
  color: var(--sand-100);
  opacity: 0.6;
  margin: 0;
}

/* =============================================================
   HOVER SHINE EFFECT FOR IMAGES & CARDS
   ============================================================= */
@keyframes shineSweep {
  0% {
    transform: translateX(-160%) skewX(-25deg);
  }

  100% {
    transform: translateX(160%) skewX(-25deg);
  }
}

/* Base overlay light sweep for cards & image wrappers */
.hero-window::after,
.destination-card::after,
.gallery-item__inner::after,
.journey-card__bg-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 20%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.05) 80%,
      rgba(255, 255, 255, 0) 100%);
  transform: translateX(-160%) skewX(-25deg);
  pointer-events: none;
  z-index: 6;
}

/* Trigger shine effect animation on hover */
.hero-window:hover::after,
.destination-card:hover::after,
.gallery-item:hover .gallery-item__inner::after,
.journey-card:hover .journey-card__bg-container::after {
  animation: shineSweep 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =============================================================
   SUBPAGE & DESTINATIONS PAGE STYLING
   ============================================================= */
.page-hero {
  position: relative;
  padding: 9rem 2rem 5rem;
  background: var(--ink-900);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 25, 38, 0.38) 0%, rgba(7, 25, 38, 0.82) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--sand-100);
  margin: 0.5rem 0 1rem;
  text-shadow: 0 2px 14px rgba(7, 25, 38, 0.75);
}

.page-hero__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sand-100);
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 1px 8px rgba(7, 25, 38, 0.7);
}

.section--all-destinations {
  padding: 5rem 0;
}

.destinations-grid--full {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 650px) {
  .destinations-grid--full {
    grid-template-columns: 1fr;
  }
}

.destination-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(244, 239, 230, 0.15);
  font-size: 0.75rem;
  color: var(--gold-500);
  letter-spacing: 0.05em;
}

.destinations-cta {
  margin-top: 5rem;
  background: rgba(244, 239, 230, 0.05);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.destinations-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--sand-100);
}

.destinations-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--sand-100);
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section--all-stories {
  padding: 5rem 0;
}

.stories-grid--full {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 650px) {
  .stories-grid--full {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   PACKAGE DETAILS PAGE STYLING
   ============================================================= */
.package-header {
  position: relative;
  padding: 10rem 0 4rem;
  background: var(--ink-900);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.package-header__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.package-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.05);
}

.package-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 38, 0.6) 0%, rgba(7, 25, 38, 0.85) 60%, var(--ink-900) 100%);
  z-index: 2;
}

.package-page-main .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4.25rem;
}

@media (max-width: 860px) {
  .package-page-main .container {
    padding: 0 1.5rem;
  }
}

.package-header__content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  margin: 0 auto;
}

.package-page-main .map-highlights-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: stretch;
}

@media (max-width: 860px) {
  .package-page-main .map-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.package-page-main .package-testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .package-page-main .package-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.package-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.package-breadcrumb a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.package-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.package-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.package-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(233, 196, 110, 0.12);
  color: var(--gold-500);
  border: 1px solid rgba(233, 196, 110, 0.25);
}

.package-pill--duration {
  background: rgba(231, 111, 81, 0.15);
  color: var(--coral-500);
  border-color: rgba(231, 111, 81, 0.3);
}

.package-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--sand-100);
  margin: 0 0 1.1rem;
}

.package-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.06rem);
  line-height: 1.6;
  color: var(--sand-100);
  opacity: 0.85;
  max-width: 820px;
  margin-bottom: 2rem;
}

.package-quick-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: rgba(14, 41, 60, 0.75);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  opacity: 0.85;
}

.spec-value {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--sand-100);
}

/* SONNET POEM SECTION */
.section--sonnet {
  padding: 4.5rem 0;
  background: var(--ink-900);
  position: relative;
}

.sonnet-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: linear-gradient(145deg, rgba(14, 41, 60, 0.8) 0%, rgba(7, 25, 38, 0.95) 100%);
  border: 1px solid rgba(233, 196, 110, 0.3);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(244, 239, 230, 0.1);
  position: relative;
  text-align: center;
}

.sonnet-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-500);
  opacity: 0.2;
  line-height: 1;
}

.sonnet-subtitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sonnet-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--sand-100);
  margin-bottom: 2rem;
  font-style: italic;
}

.sonnet-poem {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--sand-100);
  font-style: italic;
  margin-bottom: 0;
  opacity: 0.95;
}

.sonnet-poem p {
  margin: 0 0 1.25rem;
}

.sonnet-poem p:last-child {
  margin-bottom: 0;
}

/* NARRATIVE & SIDEBAR SECTION */
.section--narrative {
  padding: 4.5rem 0;
  background: var(--ink-700);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

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

.narrative-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--sand-100);
}

.narrative-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sand-100);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.narrative-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.narrative-content strong {
  color: var(--gold-500);
  font-weight: 600;
}

.narrative-callout {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--coral-500);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--coral-500);
  background: rgba(231, 111, 81, 0.08);
  border-radius: 0 16px 16px 0;
  margin: 2.5rem 0;
}

/* SIDEBAR CARD */
.package-sidebar-card {
  position: sticky;
  top: 100px;
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.sidebar-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sand-100);
  margin-bottom: 1.25rem;
}

.sidebar-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.sidebar-highlights-list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.45;
  color: var(--sand-100);
  opacity: 0.88;
}

.sidebar-highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

.sidebar-cta-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ITINERARY PHASES SECTION */
.section--itinerary {
  padding: 5rem 0;
  background: var(--ink-900);
}

.itinerary-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.itinerary-header .eyebrow {
  color: var(--gold-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.itinerary-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--sand-100);
  margin-bottom: 1rem;
}

/* PHASE BLOCK */
.phase-block {
  position: relative;
  margin-bottom: 4.5rem;
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.phase-header {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(7, 25, 38, 0.9) 0%, rgba(14, 41, 60, 0.95) 100%);
  border-bottom: 1px solid var(--line);
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.phase-header__title-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.phase-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(233, 196, 110, 0.15);
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.phase-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--sand-100);
  margin: 0;
}

.phase-days-badge {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  background: rgba(244, 239, 230, 0.08);
  color: var(--sand-100);
  border: 1px solid var(--line);
}

.phase-body {
  padding: 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}

/* Seamless Inline Day Photo Cards & Fluid Responsive Layout */
.days-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.days-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500) 0%, rgba(233, 196, 110, 0.15) 100%);
}

.day-card {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.day-dot {
  position: absolute;
  left: 11px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 3px solid var(--gold-500);
  box-shadow: 0 0 10px rgba(233, 196, 110, 0.4);
  z-index: 2;
}

.day-card__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 2.5rem;
  align-items: center;
  background: rgba(244, 239, 230, 0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.day-card__layout:hover {
  border-color: rgba(233, 196, 110, 0.35);
}

.day-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.day-card__media {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.day-photo-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.day-photo-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}

.day-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.day-photo-card:hover img {
  transform: scale(1.06);
}

.day-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 25, 38, 0.93) 100%);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sand-100);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.day-photo-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.day-photo-grid .day-photo-card {
  aspect-ratio: 16 / 9.5;
}

/* =============================================================
   TABLET & MOBILE RESPONSIVE QUERIES
   ============================================================= */

@media (max-width: 900px) {
  .day-card__layout {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.25rem 1.25rem;
  }

  .day-photo-card {
    aspect-ratio: 16 / 10;
  }

  /* On mobile, 2 photos stack ONE ABOVE THE OTHER for full clarity */
  .day-photo-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .day-photo-grid .day-photo-card {
    aspect-ratio: 16 / 9.5;
  }
}

@media (max-width: 600px) {
  .day-card {
    padding-left: 2.25rem;
  }

  .day-card__layout {
    padding: 1.1rem 1rem;
    border-radius: 16px;
  }
}



.day-card__header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.day-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-500);
}

.day-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sand-100);
  margin: 0;
}

.day-activities {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.day-activities li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0.88;
  position: relative;
  padding-left: 1.1rem;
}

.day-activities li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

.overnight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--seafoam-300);
  background: rgba(46, 196, 182, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(46, 196, 182, 0.25);
}

.phase-image-preview {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
  position: relative;
}

.phase-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 38, 0.1) 0%, rgba(7, 25, 38, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.phase-location-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand-100);
  background: rgba(7, 25, 38, 0.75);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

/* FINAL CTA FOOTER BANNER */
.package-cta-section {
  padding: 5rem 0;
  background: var(--ink-700);
  border-top: 1px solid var(--line);
  text-align: center;
}

.package-cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  background: var(--ink-900);
  border: 1px solid var(--gold-500);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.package-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--sand-100);
  margin-bottom: 1rem;
}

.package-cta-box p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--sand-100);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.package-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================================
   SENSORY JOURNEY & CLIMATE TRANSITION STYLING
   ============================================================= */

/* Climate Meter / Journey Bar */
.climate-strip-wrap {
  margin-top: 2.5rem;
  background: rgba(7, 25, 38, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(10px);
}

.climate-strip-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.climate-nodes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  position: relative;
}

@media (max-width: 800px) {
  .climate-nodes-grid {
    grid-template-columns: 1fr;
  }
}

.climate-node {
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.climate-node:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
}

.climate-node__temp {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.climate-node__loc {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--sand-100);
}

.climate-node__feel {
  font-size: 0.72rem;
  opacity: 0.75;
  color: var(--sand-100);
}

/* Phase Specific Climate Theme Enhancements */
.phase-block--sunny-gold {
  border-color: rgba(233, 196, 110, 0.4);
  background: linear-gradient(180deg, rgba(30, 24, 15, 0.95) 0%, rgba(14, 41, 60, 0.95) 100%);
  box-shadow: 0 16px 48px rgba(233, 196, 110, 0.08);
}

.phase-block--temple-crimson {
  border-color: rgba(231, 111, 81, 0.35);
  background: linear-gradient(180deg, rgba(35, 18, 22, 0.95) 0%, rgba(14, 41, 60, 0.95) 100%);
}

.phase-block--highland-mist {
  border-color: rgba(46, 196, 182, 0.4);
  background: linear-gradient(180deg, rgba(10, 35, 45, 0.95) 0%, rgba(14, 41, 60, 0.95) 100%);
  box-shadow: 0 16px 48px rgba(46, 196, 182, 0.1);
  position: relative;
}

.phase-block--highland-mist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse at top, rgba(46, 196, 182, 0.15), transparent 70%);
  pointer-events: none;
}

.phase-block--rainforest-ocean {
  border-color: rgba(46, 196, 182, 0.35);
  background: linear-gradient(180deg, rgba(12, 38, 28, 0.95) 0%, rgba(14, 41, 60, 0.95) 100%);
}

.phase-block--urban-twilight {
  border-color: rgba(233, 196, 110, 0.3);
  background: linear-gradient(180deg, rgba(20, 25, 45, 0.95) 0%, rgba(14, 41, 60, 0.95) 100%);
}

/* Sensory Callout Banner inside Phase Body */
.sensory-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.sensory-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.sensory-badge--gold {
  background: rgba(233, 196, 110, 0.15);
  color: var(--gold-500);
  border: 1px solid rgba(233, 196, 110, 0.3);
}

.sensory-badge--mist {
  background: rgba(46, 196, 182, 0.18);
  color: var(--seafoam-300);
  border: 1px solid rgba(46, 196, 182, 0.35);
}

.sensory-badge--ocean {
  background: rgba(231, 111, 81, 0.15);
  color: var(--coral-500);
  border: 1px solid rgba(231, 111, 81, 0.3);
}

.sensory-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0.9;
  margin: 0;
  font-style: italic;
}

/* Multi-photo Phase Gallery Showcase */
.phase-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.phase-photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.phase-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.phase-photo-card:hover img {
  transform: scale(1.06);
}

.phase-photo-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 25, 38, 0.9) 100%);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sand-100);
}

/* 2D Atmosphere Corner Decor Badges (Straddling Top-Right Card Border Corner) */
.phase-corner-decor {
  position: absolute;
  top: -22px;
  right: 28px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(7, 25, 38, 0.94);
  border: 1.5px solid var(--gold-500);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(233, 196, 110, 0.25);
  animation: floatCornerIcon 3.5s ease-in-out infinite alternate;
}

/* Responsive fixes for itinerary phase blocks */
.phase-block {
  position: relative;
  margin-bottom: 4.5rem;
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.phase-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}

.sensory-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid var(--line);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sensory-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.phase-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.phase-photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .phase-body {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .package-header {
    padding: 7.5rem 0 2.5rem;
  }

  .package-title {
    font-size: 2rem;
  }

  .package-quick-specs {
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem 1rem;
    gap: 0.85rem;
  }

  .climate-strip-wrap {
    padding: 1rem 0.85rem;
  }

  .climate-nodes-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .phase-header {
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
    box-sizing: border-box;
  }

  .phase-header__title-wrap {
    gap: 0.75rem;
    width: 100%;
  }

  .phase-number {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .phase-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .phase-days-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
  }

  .phase-corner-decor {
    top: -16px;
    right: 12px;
    padding: 0.35rem 0.8rem;
    gap: 0.35rem;
    max-width: calc(100% - 24px);
    box-sizing: border-box;
  }

  .phase-corner-decor span {
    font-size: 1.15rem;
  }

  .phase-body {
    padding: 1.25rem 0.9rem;
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .sensory-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 0.9rem;
    width: 100%;
    box-sizing: border-box;
  }

  .sensory-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .days-timeline {
    width: 100%;
    box-sizing: border-box;
  }

  .days-timeline::before {
    left: 10px;
  }

  .day-card {
    padding-left: 1.85rem;
    width: 100%;
    box-sizing: border-box;
  }

  .day-dot {
    left: 4px;
    top: 5px;
    width: 13px;
    height: 13px;
  }

  .day-title {
    font-size: 1.1rem;
  }

  .phase-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }

  .phase-photo-card {
    height: 180px;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .package-quick-specs {
    grid-template-columns: 1fr;
  }

  .phase-corner-decor {
    top: -14px;
    right: 8px;
    padding: 0.3rem 0.65rem;
    gap: 0.25rem;
    max-width: calc(100% - 16px);
  }

  .phase-corner-decor span {
    font-size: 1.05rem;
  }
}

.phase-corner-decor span {
  font-size: 1.55rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  .phase-corner-decor span {
    font-size: 1.25rem;
  }
}

.phase-corner-decor span:hover {
  transform: scale(1.45) rotate(10deg);
}

@keyframes floatCornerIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* =============================================================
   IRRESISTIBLE CONVINCING POWERHOUSE SECTION STYLING
   ============================================================= */
.package-convince-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--ink-700) 0%, var(--ink-900) 100%);
  border-top: 1px solid var(--line);
}

.package-convince-card {
  background: linear-gradient(145deg, rgba(14, 41, 60, 0.95) 0%, rgba(7, 25, 38, 0.98) 100%);
  border: 1px solid var(--gold-500);
  border-radius: 32px;
  padding: 4rem 3rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(233, 196, 110, 0.12);
  text-align: center;
}

@media (max-width: 768px) {
  .package-convince-card {
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
  }
}

.rating-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(233, 196, 110, 0.12);
  border: 1px solid rgba(233, 196, 110, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.rating-trust-badge .stars {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.rating-trust-badge .rating-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-500);
}

.convince-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--sand-100);
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.convince-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--sand-100);
  opacity: 0.88;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

/* 4 Pillars of Excellence Grid */
.convince-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  text-align: left;
}

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

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

.pillar-card {
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.35rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--sand-100);
  margin: 0 0 0.6rem;
}

.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0.8;
  margin: 0;
}

/* Traveler Testimonial Highlight */
.convince-testimonial {
  background: rgba(7, 25, 38, 0.8);
  border: 1px dashed rgba(233, 196, 110, 0.4);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  max-width: 850px;
  margin: 0 auto 3.5rem;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--sand-100);
  margin-bottom: 1.25rem;
  position: relative;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gold-500);
}

.testimonial-author span {
  font-size: 0.82rem;
  opacity: 0.75;
}

/* Call to Action Box */
.convince-action-box {
  background: rgba(231, 111, 81, 0.08);
  border: 1px solid rgba(231, 111, 81, 0.3);
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.convince-action-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sand-100);
  margin-bottom: 0.75rem;
}

.convince-action-box p {
  font-size: 1rem;
  color: var(--sand-100);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.convince-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.btn--xl {
  padding: 1.15rem 2.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 99px;
  letter-spacing: 0.01em;
}

/* Primary Quote Button: Gold Glassmorphism */
.convince-action-box .btn--solid {
  background: rgba(233, 196, 110, 0.12);
  color: var(--gold-500);
  border: 1.5px solid rgba(233, 196, 110, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(233, 196, 110, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.convince-action-box .btn--solid:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(233, 196, 110, 0.24);
  border-color: var(--gold-500);
  color: #FFFFFF;
  box-shadow: 0 16px 38px rgba(233, 196, 110, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Secondary WhatsApp Button: Dark Emerald Glassmorphism */
.btn--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.convince-guarantee-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.03em;
}

/* =============================================================
   TESTIMONIALS & FAQ Q&A STYLING
   ============================================================= */

/* Testimonials Grid Section */
.section--package-testimonials {
  padding: 5rem 0;
  background: var(--ink-700);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.testimonials-header .eyebrow {
  color: var(--gold-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--sand-100);
  margin-bottom: 1rem;
}

.package-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

@media (max-width: 650px) {
  .package-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.package-testimonial-card {
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
}

.testimonial-card__stars {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--sand-100);
  opacity: 0.92;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.testimonial-card__user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(233, 196, 110, 0.15);
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--sand-100);
}

.testimonial-info span {
  font-size: 0.78rem;
  color: var(--gold-500);
  opacity: 0.85;
}

/* FAQ Q&A Accordion Section */
.section--package-faq {
  padding: 5rem 0;
  background: var(--ink-900);
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.faq-header .eyebrow {
  color: var(--gold-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--sand-100);
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(233, 196, 110, 0.4);
}

.faq-question {
  padding: 1.5rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sand-100);
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold-500);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--sand-100);
  opacity: 0.9;
}

.faq-answer p {
  margin: 0 0 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* =============================================================
   ROUTE MAP & JOURNEY HIGHLIGHTS SECTION STYLING
   ============================================================= */
.section--route-map {
  padding: 5rem 0;
  background: var(--ink-900);
  border-bottom: 1px solid var(--line);
}

.map-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

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

/* Map Container */
.map-container-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gold-500);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(233, 196, 110, 0.12);
  background: var(--ink-700);
  min-height: 480px;
}

#route-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 24px;
  z-index: 1;
}

@media (max-width: 768px) {
  .map-container-wrap, #route-map {
    min-height: 380px;
  }
}

/* Custom Leaflet Map Popup Styling */
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: var(--ink-900) !important;
  color: var(--sand-100) !important;
  border: 1px solid var(--gold-500) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important;
  border-radius: 12px !important;
}

.leaflet-popup-content {
  margin: 10px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
}

.leaflet-popup-content strong {
  color: var(--gold-500) !important;
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-display);
}

/* Custom Leaflet Marker Pins */
.custom-map-pin {
  width: 30px;
  height: 30px;
  background: var(--gold-500);
  color: var(--ink-900);
  border: 2px solid var(--ink-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(233, 196, 110, 0.5);
  font-family: var(--font-body);
}

.custom-map-pin--airport {
  background: var(--coral-500);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.6);
  border: 2px solid var(--sand-100);
}

.route-flow-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 1.35rem;
  background: rgba(7, 25, 38, 0.65);
  border: 1px solid rgba(233, 196, 110, 0.25);
  border-radius: 12px;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--sand-100);
  line-height: 1.6;
}

.route-flow-node {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.route-flow-node--airport {
  color: var(--coral-500);
  font-weight: 600;
}

.route-flow-arrow {
  color: var(--gold-500);
  font-weight: 700;
  opacity: 0.8;
}

/* Journey Highlights Panel */
.journey-highlights-panel {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .journey-highlights-panel {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }
}

.highlights-title-wrap {
  margin-bottom: 1.75rem;
}

.highlights-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.highlights-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--sand-100);
  margin: 0;
  line-height: 1.25;
}

.highlights-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.highlights-bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--sand-100);
  opacity: 0.92;
}

.highlights-bullet-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-500);
  font-size: 1.3rem;
}

.highlights-bullet-list strong {
  color: var(--gold-500);
  font-weight: 600;
}

.highlights-footer-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
}

.highlights-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(233, 196, 110, 0.12);
  color: var(--gold-500);
  border: 1px solid rgba(233, 196, 110, 0.25);
}

/* =============================================================
   HERITAGE SINGLE DESTINATION PAGE STYLES (COMPACT & FRAMED)
   ============================================================= */
.subnav-link {
  color: var(--sand-100);
  opacity: 0.8;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.subnav-link:hover,
.subnav-link.active {
  color: var(--gold-500);
  opacity: 1;
  background: rgba(233, 196, 110, 0.14);
}

.site-detail-card {
  background: rgba(14, 41, 60, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 196, 110, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.site-detail-card__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem;
  align-items: center;
}

.site-detail-card__grid--reverse {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.75rem;
  align-items: center;
}

.site-detail-card__grid--reverse .site-detail-card__media {
  order: 2;
}

.site-detail-card__grid--reverse .site-detail-card__content {
  order: 1;
}

@media (max-width: 992px) {
  .site-detail-card {
    padding: 1.25rem;
  }
  .site-detail-card__grid,
  .site-detail-card__grid--reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .site-detail-card__grid--reverse .site-detail-card__media {
    order: 1;
  }
  .site-detail-card__grid--reverse .site-detail-card__content {
    order: 2;
  }
}

.site-detail-card__media {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.site-detail-card__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.site-detail-card:hover .site-detail-card__media img {
  transform: scale(1.02);
}

.site-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(7, 25, 38, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-500);
  border: 1px solid rgba(233, 196, 110, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-detail-card__content {
  padding: 0.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.site-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  color: var(--sand-100);
  margin: 0 0 0.6rem;
  line-height: 1.18;
}

.site-text {
  font-size: 0.86rem;
  line-height: 1.58;
  color: var(--sand-100);
  opacity: 0.88;
  margin: 0 0 0.6rem;
}

.site-features-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
  margin-bottom: 0.85rem;
}

.feat-pill {
  background: rgba(244, 239, 230, 0.08);
  border: 1px solid rgba(244, 239, 230, 0.16);
  color: var(--sand-100);
  padding: 0.22rem 0.6rem;
  border-radius: 99px;
  font-size: 0.73rem;
  font-weight: 500;
}

.chanaka-insider-note {
  background: rgba(233, 196, 110, 0.09);
  border-left: 3px solid var(--gold-500);
  padding: 0.65rem 0.85rem;
  border-radius: 0 10px 10px 0;
  font-size: 0.8rem;
  line-height: 1.48;
  color: var(--sand-100);
  margin-top: 0.35rem;
}

.chanaka-insider-note strong {
  color: var(--gold-500);
  display: block;
  margin-bottom: 0.15rem;
}

/* Scenic Cards */
.scenic-card {
  background: rgba(14, 41, 60, 0.6);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.scenic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 196, 110, 0.35);
}

.scenic-card__image-wrap {
  position: relative;
  height: 165px;
  overflow: hidden;
}

.scenic-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scenic-card:hover .scenic-card__image-wrap img {
  transform: scale(1.05);
}

.scenic-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(7, 25, 38, 0.85);
  color: var(--sand-100);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
}

.scenic-card__body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.scenic-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--sand-100);
  margin: 0 0 0.4rem;
}

.scenic-card__desc {
  font-size: 0.84rem;
  line-height: 1.52;
  color: var(--sand-100);
  opacity: 0.85;
  margin: 0 0 0.9rem;
  flex-grow: 1;
}

.scenic-footer {
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  padding-top: 0.6rem;
}

/* Culture Cards */
.culture-card {
  background: rgba(14, 41, 60, 0.6);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 196, 110, 0.35);
}

/* =============================================================
   DESTINATION PAGE COMPACT 80% SCALING & FRAMED MARGINS
   ============================================================= */
.site-destination-page {
  font-size: 0.85rem;
}

.site-destination-page .container,
.site-destination-page .hero-content-inner {
  max-width: 920px !important;
  width: 88% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1rem, 2.5vw, 2rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
}

.site-destination-page .sticky-subnav-wrap .container {
  max-width: 920px !important;
}

.site-destination-page .section {
  padding: 3.5rem 0 !important;
}

.site-destination-page .section-intro {
  margin-bottom: 2.25rem !important;
}

.site-destination-page .section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem) !important;
}

.site-destination-page .section-desc {
  font-size: 0.95rem !important;
}

/* =============================================================
   GRAND PALACE GATE SCROLL REVEAL SECTION STYLES
   ============================================================= */
.grand-palace-gate-section {
  position: relative;
  min-height: 480px;
  background: #040e16;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0 5.5rem;
  border-top: 1px solid var(--line);
}

.grand-palace-gate-container {
  position: relative;
  width: 90%;
  max-width: 920px;
  min-height: 420px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(233, 196, 110, 0.18) 0%, rgba(7, 25, 38, 0.98) 80%);
  border: 1px solid rgba(233, 196, 110, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hidden Inner Content Revealed Behind Parting Gates */
.palace-gate-inner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  max-width: 740px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.suspense-eyebrow {
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.suspense-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  color: var(--sand-100);
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #E9C46A 0%, #F4EFE6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.suspense-text {
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--sand-100);
  opacity: 0.88;
  margin-bottom: 1.1rem;
}

.suspense-question {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--gold-500);
  margin-bottom: 2rem;
}

.suspense-cta-strip {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--suspense {
  background: linear-gradient(135deg, #E9C46A 0%, #D4A337 100%) !important;
  color: #071926 !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 25px rgba(233, 196, 110, 0.35) !important;
}

/* Parting Royal Palace Doors */
.palace-gate-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  z-index: 10;
  background: linear-gradient(135deg, #0E293C 0%, #071926 100%);
  border: 2px solid rgba(233, 196, 110, 0.4);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s cubic-bezier(0.1, 0.8, 0.2, 1);
  will-change: transform;
}

.palace-gate-door--left {
  left: 0;
  border-right: 3px solid var(--gold-500);
}

.palace-gate-door--right {
  right: 0;
  border-left: 3px solid var(--gold-500);
}

/* Gate filigree details & brass handles */
.gate-filigree {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(233, 196, 110, 0.25);
  border-radius: 12px;
  pointer-events: none;
}

.gate-handle-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--gold-500);
  box-shadow: 0 0 15px rgba(233, 196, 110, 0.4), inset 0 0 10px rgba(233, 196, 110, 0.3);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.palace-gate-door--left .gate-handle-ring {
  right: 20px;
}

.palace-gate-door--right .gate-handle-ring {
  left: 20px;
}

.gate-emblem {
  font-size: 2.2rem;
  opacity: 0.6;
}

/* =============================================================
   CUSTOM JOURNEY BUILDER STYLES
   ============================================================= */
.builder-filters .filter-tab {
  background: rgba(244, 239, 230, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244, 239, 230, 0.18);
  color: var(--sand-100);
  padding: 0.65rem 1.35rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.builder-filters .filter-tab:hover {
  background: rgba(244, 239, 230, 0.16);
  border-color: rgba(244, 239, 230, 0.35);
  transform: translateY(-2px);
}

.builder-filters .filter-tab.active {
  background: var(--gold-500);
  color: var(--ink-900);
  border-color: var(--gold-500);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(233, 196, 110, 0.35);
}

.custom-destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.85rem;
  margin-bottom: 5rem;
}

.custom-dest-card {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.custom-dest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 196, 110, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.custom-dest-card.is-selected {
  border-color: var(--gold-500);
  background: rgba(233, 196, 110, 0.04);
  box-shadow: 0 0 0 2px var(--gold-500), 0 15px 40px rgba(233, 196, 110, 0.18);
}

.custom-dest-card__image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.custom-dest-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dest-card:hover .custom-dest-card__image {
  transform: scale(1.08);
}

.custom-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 25, 38, 0.85) 0%, rgba(7, 25, 38, 0.15) 60%, transparent 100%);
  pointer-events: none;
}

.custom-dest-card__region {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(7, 25, 38, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(233, 196, 110, 0.25);
  z-index: 2;
}

.custom-dest-card__check-indicator {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 25, 38, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(244, 239, 230, 0.4);
  color: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
  transition: all 0.25s ease;
}

.custom-dest-card__check-indicator.is-checked {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.custom-dest-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.custom-dest-card__cat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.custom-dest-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--sand-100);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.custom-dest-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sand-100);
  opacity: 0.85;
  margin: 0 0 1.25rem;
}

.btn-toggle-select {
  width: 100%;
  padding: 0.65rem;
  border-radius: 99px;
  background: rgba(244, 239, 230, 0.08);
  border: 1px solid rgba(244, 239, 230, 0.2);
  color: var(--sand-100);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-toggle-select:hover {
  background: rgba(244, 239, 230, 0.16);
  border-color: rgba(244, 239, 230, 0.4);
}

.btn-toggle-select.is-active {
  background: rgba(233, 196, 110, 0.18);
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.builder-submission-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.builder-form-card {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
  .builder-form-card {
    padding: 2rem 1.25rem;
  }
}

.builder-form-header {
  text-align: center;
}

.selected-summary-box {
  background: rgba(7, 25, 38, 0.55);
  border: 1px solid rgba(233, 196, 110, 0.25);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
}

.selected-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(233, 196, 110, 0.12);
  border: 1px solid rgba(233, 196, 110, 0.35);
  color: var(--sand-100);
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
}

.selected-pill button {
  background: none;
  border: none;
  color: var(--coral-500);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
}

.floating-route-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 100;
  width: 90%;
  max-width: 640px;
  background: rgba(7, 25, 38, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(233, 196, 110, 0.4);
  border-radius: 99px;
  padding: 0.75rem 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(233, 196, 110, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-route-bar.is-visible {
  transform: translateX(-50%) translateY(0);
}

.floating-route-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.floating-route-bar__info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.floating-route-bar__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--ink-900);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-route-bar__text {
  display: flex;
  flex-direction: column;
}

.floating-route-bar__text strong {
  font-size: 0.95rem;
  color: var(--sand-100);
}

.floating-route-bar__sub {
  font-size: 0.75rem;
  color: var(--sand-100);
  opacity: 0.7;
}

@media (max-width: 640px) {
  .floating-route-bar {
    bottom: 12px;
    padding: 0.6rem 1rem;
    border-radius: 20px;
  }
  .floating-route-bar__sub {
    display: none;
  }
}

/* =============================================================
   UNESCO SITES & JOURNEYS BIDIRECTIONAL LINKING STYLES
   ============================================================= */
.unesco-site-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(233, 196, 110, 0.12);
  border: 1px solid rgba(233, 196, 110, 0.35);
  color: var(--gold-500);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.unesco-site-link:hover {
  background: rgba(233, 196, 110, 0.25);
  border-color: var(--gold-500);
  color: var(--sand-100);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 196, 110, 0.25);
}

.unesco-route-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-500);
  background: rgba(7, 25, 38, 0.7);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  border: 1px solid rgba(233, 196, 110, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.unesco-route-badge:hover {
  background: var(--gold-500);
  color: var(--ink-900);
  border-color: var(--gold-500);
}

.unesco-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.unesco-showcase-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.unesco-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 196, 110, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.unesco-showcase-card__image-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.unesco-showcase-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unesco-showcase-card:hover .unesco-showcase-card__image-wrap img {
  transform: scale(1.06);
}

.unesco-showcase-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.unesco-showcase-card__type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.unesco-showcase-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sand-100);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.unesco-showcase-card__desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--sand-100);
  opacity: 0.8;
  margin: 0 0 1rem;
}

.unesco-showcase-card__cta {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* =============================================================
   FEATURED JOURNEYS ON UNESCO PAGES (COMPACT JOURNEY CARDS)
   ============================================================= */
.journeys-grid--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.journey-card--compact {
  padding: 1.35rem 1.15rem;
  border-radius: 14px;
  min-height: 100%;
}

.journey-card--compact .journey-card__duration {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
}

.journey-card--compact .journey-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.journey-card--compact .journey-card__desc {
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  opacity: 0.88;
}

.journey-card--compact .journey-card__highlights {
  margin: 0 0 1.15rem;
  gap: 0.5rem;
}

.journey-card--compact .journey-card__highlights li {
  font-size: 0.82rem;
  line-height: 1.45;
  padding-left: 1.15rem;
}

.journey-card--compact .journey-card__highlights li::before {
  font-size: 0.82rem;
}

.journey-card--compact .journey-card__tags {
  padding-top: 0.85rem;
  gap: 0.4rem;
}

.journey-card--compact .badge {
  font-size: 0.68rem;
  padding: 0.22rem 0.55rem;
}

.journey-card--compact .btn {
  font-size: 0.82rem;
  padding: 0.58rem 1rem;
}

/* =============================================================
   STORIES / TESTIMONIAL PREVIEWS (Index & Global)
   ============================================================= */
.stories-grid--preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .stories-grid--preview {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 1.25rem 1.25rem;
    margin: 0 -1.5rem;
    scrollbar-width: none;
    max-width: none;
  }

  .stories-grid--preview::-webkit-scrollbar {
    display: none;
  }

  .stories-grid--preview .story-card-preview {
    flex: 0 0 66vw;
    max-width: 240px;
    scroll-snap-align: start;
    margin: 0;
  }

  .stories-grid--preview .story-card-preview:nth-child(odd),
  .stories-grid--preview .story-card-preview:nth-child(even) {
    transform: translateY(20px);
    opacity: 0;
  }

  .stories-grid--preview .story-card-preview.revealed {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

.story-card-preview {
  background: #0b1f2d;
  border: 1px solid rgba(233, 196, 110, 0.22);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  cursor: pointer;
}

.story-card-preview:hover {
  transform: translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(233, 196, 110, 0.22);
}

.story-card-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(8, 24, 36, 0.95);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  font-size: 0.82rem;
  color: var(--sand-100);
}

@media (max-width: 1024px) {
  .story-card-preview__header {
    padding: 0.6rem 0.85rem;
    font-size: 0.76rem;
  }
}

.story-card-preview__header .review-badge {
  font-weight: 600;
  color: #81C784;
  letter-spacing: 0.02em;
}

.story-card-preview__header .review-enlarge-hint {
  font-size: 0.74rem;
  color: var(--gold-500);
  background: rgba(233, 196, 110, 0.12);
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(233, 196, 110, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

@media (max-width: 1024px) {
  .story-card-preview__header .review-enlarge-hint {
    font-size: 0.68rem;
    padding: 0.18rem 0.5rem;
  }
}

.story-card-preview:hover .review-enlarge-hint {
  background: rgba(233, 196, 110, 0.25);
  transform: scale(1.04);
}

.story-card-preview__img {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .story-card-preview__img {
    height: 265px;
  }
}

.story-card-preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.story-card-preview:hover .story-card-preview__img img {
  transform: scale(1.03);
}

.story-card-preview__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: linear-gradient(to top, rgba(11, 31, 45, 0.96) 25%, rgba(11, 31, 45, 0.65) 65%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.85rem;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .story-card-preview__fade {
    height: 60px;
    padding-bottom: 0.65rem;
  }
}

.story-card-preview__fade span {
  font-size: 0.78rem;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(8, 24, 36, 0.88);
  padding: 0.25rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(233, 196, 110, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
  .story-card-preview__fade span {
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
  }
}

/* =============================================================
   REVIEW LIGHTBOX POPUP MODAL (High-Definition Scrollable Reader)
   ============================================================= */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.review-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 22, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.review-modal__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: #0b1f2d;
  border-radius: 18px;
  border: 1px solid rgba(233, 196, 110, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  animation: modalPopIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.review-modal__top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #071926;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}

.review-modal__brand {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand-100);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.1);
  color: var(--sand-100);
  border: 1px solid rgba(233, 196, 110, 0.3);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.review-modal__close:hover,
.review-modal__close:focus {
  background: var(--gold-500);
  color: var(--ink-900);
}

.review-modal__body {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(88vh - 85px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  overscroll-behavior: contain;
}

.review-modal__img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

.review-modal__footer-hint {
  padding: 0.45rem 1rem;
  background: #071926;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  font-size: 0.72rem;
  color: var(--gold-500);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}