:root {
  --navy-950: #ffffff;
  --navy-900: #f8fafc;
  --navy-800: #f1f5f9;
  --navy-700: #e2e8f0;
  --white: #0f172a;
  --white-muted: #475569;
  --orange: #ea580c;
  --orange-bright: #f97316;
  --amber: #f59e0b;
  --amber-soft: #d97706;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.12);

  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.06);
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white-muted);
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* —— Nav —— */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.nav-header.is-scrolled {
  background: rgba(10, 15, 26, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.navbar {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-icon {
  color: var(--amber-soft);
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: #ffffff4f;
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color:white;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
    border: 1px solid;
}

.btn-outline:hover {
 background:  var(--white);
  color:white;
    border: 1px solid;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.nav-cta-wrap {
  margin-left: 0.5rem;
}

.brand-lockup {
  display: inline;
  white-space: nowrap;
}

.brand-amp {
  color: var(--amber-soft);
  font-weight: 700;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

button.btn {
  font: inherit;
}

/* Section CTA row (e.g. View all) */
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Destination card actions */
.dest-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

/* —— Enquiry modal —— */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 750px;
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-xl);
  background: #fff;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease-out);
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber-soft);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--white);
  margin: 0px 2rem 1.25rem 0;
  line-height: 1.2;
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.modal-sub strong {
  color: var(--amber-soft);
  font-weight: 600;
}

.enquiry-form .field {
  margin-bottom: 1rem;
}

.enquiry-form .field-label {
  display: block;
  margin-bottom: 0.35rem;
}

.field-optional {
  opacity: 0.6;
  font-weight: 400;
}

.enquiry-success-close {
  margin-top: 1.25rem;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color:black;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid black;
  border-radius: 0.65rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.enquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: rgba(251, 191, 36, 0.45);
}

.enquiry-form .btn-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.enquiry-success {
  text-align: center;
  padding: 1rem 0;
}

.enquiry-success h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.enquiry-success p {
  margin: 0;
  color: var(--white-muted);
  font-size: 0.95rem;
}

body.enquiry-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .modal-panel {
    transition: none;
  }
}

/* —— Hero (split + slider) —— */
.hero--split {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: none;
  max-width: none;
  margin: 0;
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-pane {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
  transform: scale(1.04);
  transition-property: opacity, transform;
}

.hero-bg-pane.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10, 15, 26, 0.75) 0%,
    rgba(13, 20, 36, 0.45) 35%,
    rgba(10, 15, 26, 0.5) 65%,
    rgba(10, 15, 26, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-overlay--split {
  background: linear-gradient(
    105deg,
    rgba(10, 15, 26, 0.92) 0%,
    rgba(10, 15, 26, 0.55) 42%,
    rgba(10, 15, 26, 0.35) 52%,
    rgba(10, 15, 26, 0.65) 100%
  );
}

/* Vertical progress rail */
.hero-progress {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  padding-left: clamp(0.75rem, 2vw, 1.75rem);
  pointer-events: none;
}

.hero-progress-inner {
  position: relative;
  width: 2rem;
  height: min(52vh, 380px);
}

.hero-progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(248, 250, 252, 0.35) 15%,
    rgba(248, 250, 252, 0.35) 85%,
    transparent 100%
  );
}

.hero-progress-dots {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

.hero-progress-dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.45);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.3s ease, box-shadow 0.3s ease;
}

.hero-progress-dot:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.15);
}

.hero-progress-dot.is-active {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.45);
}

.hero-progress-knob {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2rem;
  height: 2rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(249, 115, 22, 0.35);
  z-index: 2;
  pointer-events: none;
  transition: top 0.55s var(--ease-out);
}

.hero-progress-knob-num {
  line-height: 1;
}

.hero-split {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem 3rem;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6.5rem 1.5rem 6rem clamp(3rem, 6vw, 5.5rem);
}

.hero-copy {
  max-width: 34rem;
}

.hero-eyebrow--split {
  margin: 0 0 0.85rem;
}

.hero-display {
  font-family: "Outfit", var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 1.25rem;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-display.is-switching {
  opacity: 0;
  transform: translateY(12px);
}

.hero-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.78);
  margin: 0 0 1.75rem;
  max-width: 32rem;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-desc.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

.hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color:white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.hero-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.5);
}

.hero-explore-arrow {
  flex-shrink: 0;
}

/* Card stack */
.hero-carousel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  overflow: visible;
}

.hero-carousel-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 430px;
  overflow: visible;
}

.hero-stack-card {
  position: absolute;
  right: 0;
top: 0; 
  width: 88%;
  max-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transform-origin: right center;
  will-change: transform, opacity;
}

.hero-carousel-stack--enter .hero-stack-card[data-depth="0"] {
  animation: hero-card-enter-0 0.58s var(--ease-out) both;
}

.hero-carousel-stack--enter .hero-stack-card[data-depth="1"] {
  animation: hero-card-enter-1 0.52s var(--ease-out) 0.07s both;
}

.hero-carousel-stack--enter .hero-stack-card[data-depth="2"] {
  animation: hero-card-enter-2 0.5s var(--ease-out) 0.14s both;
}

@keyframes hero-card-enter-0 {
  from {
    opacity: 0;
    transform: translateX(72px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes hero-card-enter-1 {
  from {
    opacity: 0;
    transform: translateX(110px) scale(0.86);
  }
  to {
    opacity: 0.94;
    transform: translateX(56px) scale(0.94);
  }
}

@keyframes hero-card-enter-2 {
  from {
    opacity: 0;
    transform: translateX(140px) scale(0.82);
  }
  to {
    opacity: 0.86;
    transform: translateX(112px) scale(0.88);
  }
}

.hero-stack-card[data-depth="0"] {
  z-index: 3;
  transform: translateX(0) scale(1);
}

.hero-stack-card[data-depth="1"] {
  z-index: 2;
  transform: translateX(56px) scale(0.94);
  opacity: 0.94;
}

.hero-stack-card[data-depth="2"] {
  z-index: 1;
  transform: translateX(112px) scale(0.88);
  opacity: 0.86;
}

.hero-stack-bookmark {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  /* color: var(--navy-800); */
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-stack-bookmark:hover {
  transform: scale(1.08);
  background: var(--white);
}

.hero-stack-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-stack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stack-body {
  padding: 0.9rem 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(13, 20, 36, 0.2) 0%, rgba(10, 15, 26, 0.92) 65%);
  margin-top: -4.25rem;
  position: relative;
}

.hero-stack-stars {
  color: var(--amber-soft);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.hero-stack-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.hero-stack-place {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.62);
}

.hero-carousel-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  width: 100%;
  max-width: 320px;
}

.hero-carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.hero-nav-btn {
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  /* background: rgba(255, 255, 255, 0.08);
  color: var(--white); */
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(251, 191, 36, 0.45);
  transform: scale(1.05);
}

.hero-slide-count {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.5);
  font-variant-numeric: tabular-nums;
}

.hero--split .scroll-hint {
  z-index: 5;
}

/* Legacy hero text helpers (search form etc.) */
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber-soft);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1rem;
  text-wrap: balance;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-muted);
  margin: 0 0 2.5rem;
  font-weight: 500;
}

/* Glass search */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-search {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
}

.hero-search-fields {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.field-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color:black;
}

.field input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #a9a5a5;
    border-radius: 0.75rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

#enquiry-modal input::placeholder,
#enquiry-modal textarea::placeholder {
  color: #94a3b8;
}

#enquiry-modal input::-webkit-input-placeholder,
#enquiry-modal textarea::-webkit-input-placeholder {
  color: #94a3b8;
}

#enquiry-modal input:-ms-input-placeholder,
#enquiry-modal textarea:-ms-input-placeholder {
  color: #94a3b8;
}

#enquiry-modal input::-ms-input-placeholder,
#enquiry-modal textarea::-ms-input-placeholder {
  color: #94a3b8;
}

.field input::placeholder {
  color: rgba(248, 250, 252, 0.38);
}

.field input:focus {
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.btn-search {
  padding: 0.85rem 1.75rem;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 1s var(--ease-out) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}
.reveal-delay-2 {
  animation-delay: 0.24s;
}
.reveal-delay-3 {
  animation-delay: 0.4s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 250, 252, 0.55);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}

.scroll-hint:hover {
  color: var(--amber-soft);
}

.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.7));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.85);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* —— Sections —— */
.section {
  padding: 5.5rem 1.5rem;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: none;
  text-align: left;
  align-items: end;
}

.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-bright);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--white-muted);
}

.section-lead strong {
  color: var(--white);
  font-weight: 600;
}

.nav-links a[aria-current="page"] {
  color: var(--amber-soft);
}

.dest-grid--page {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .dest-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dest-grid--page {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-lead--narrow {
  max-width: 420px;
  margin-left: auto;
}

/* —— Destinations —— */



.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  height: 56px;
  padding: 0 35px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.custom-select-trigger:hover,
.custom-select-trigger.active {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.custom-select-text {
  color: #6b7280;
}

.custom-select.has-value .custom-select-text {
  color: #111827;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: 6px;
  display: none;
  max-height: 240px;
  overflow-y: auto;
  z-index: 99;
}

.custom-select.open .custom-select-menu {
  display: block;
}

.custom-select-option {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select-option:hover {
  background: rgba(249, 115, 22, 0.08);
  color: #f97316;
}

.custom-select-option.active {
  background: #f97316;
  color: #fff;
}

/* mobile fix */
@media (max-width: 768px) {
  .custom-select-trigger {
    height: 50px;
    border-radius: 14px;
    font-size: 13px;
  }

  .custom-select-option {
    font-size: 13px;
    padding: 10px;
  }
}




.destinations {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-950) 100%);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap:23px;
}

.dest-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
  height: 280px;
}


.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
}

.dest-card-media {
  /*aspect-ratio: 4 / 5;*/
  overflow: hidden;
  height: 280px;
}

.dest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.dest-card:hover .dest-card-media img {
  transform: scale(1.08);
}

.dest-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.4) 55%, transparent 100%);
}

.dest-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: white;
  margin: 0 0 0.2rem;
}

.dest-card-loc {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.65);
  margin: 0 0 0.5rem;
}

.dest-card-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber-soft);
  margin: 0;
}

/* —— Why us —— */
.why-us {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(234, 88, 12, 0.12) 0%, transparent 55%), var(--navy-950);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
  z-index: 0;
}

.feature-card--compass::before {
  background: linear-gradient(145deg, #1a2740 0%, #0d1424 45%, rgba(234, 88, 12, 0.15) 100%);
}

.feature-card--leaf::before {
  background: linear-gradient(145deg, #121c30 0%, #0d1424 40%, rgba(42, 157, 143, 0.18) 100%);
}

.feature-card--sparkle::before {
  background: linear-gradient(145deg, #1a2740 0%, #121c30 50%, rgba(245, 158, 11, 0.12) 100%);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(251, 191, 36, 0.25);
}

.feature-icon,
.feature-title,
.feature-text {
  position: relative;
  z-index: 1;
}

.feature-icon {
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.feature-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--white-muted);
}

/* —— Packages —— */
.packages {
  background: var(--navy-900);
  overflow: hidden;
}

.packages-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 1.25rem;
}

.package-card {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.package-media {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.package-card:hover .package-media img {
  transform: scale(1.06);
}

.package-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-950);
  background: rgba(251, 191, 36, 0.95);
  border-radius: 999px;
}

.package-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.package-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--white-muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.package-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber-soft);
}

.btn-book {
  font-size: 0.8rem;
  padding: 0.55rem 1.1rem;
}

/* —— Journal —— */
.journal-teaser {
  padding: 4rem 1.5rem;
}

.glass-subtle {
  background: rgba(18, 28, 48, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.journal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.journal-copy .section-lead {
  margin-bottom: 1.5rem;
}

.journal-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.journal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

/* —— CTA —— */
.cta-band {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text {
  color: var(--white-muted);
  margin: 0 0 1.75rem;
}

/* —— Inner pages (About, Legal) —— */
.page-main {
  padding-top: 4.5rem;
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
 /*background: linear-gradient(*/
 /*   180deg,*/
 /*   rgba(10, 15, 26, 0.55) 0%,*/
 /*   rgba(10, 15, 26, 0.85) 70%,*/
 /*   var(--navy-950) 100%*/
 /* );*/
 
   background: #3a3a3ac7;
  opacity: 0.7;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 1.5rem 3rem;
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber-soft);
  margin: 0 0 0.75rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: white;
  margin: 0 0 0.75rem;
  line-height: 1.12;
  max-width: 16ch;
}

.page-hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.1rem;
  color:white;
}

.about-story {
  padding: 4rem 1.5rem 2rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--white);
  margin: 0 0 1rem;
}

.about-story-text p {
  margin: 0 0 1rem;
  color: var(--white-muted);
  line-height: 1.75;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--glass-border);
}

.about-story-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-pillars {
  padding: 3rem 1.5rem 5rem;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.pillar-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  /* background: rgba(18, 28, 48, 0.65); */
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.pillar-card:hover {
  border-color: rgba(251, 191, 36, 0.22);
  transform: translateY(-4px);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--amber-soft), var(--orange-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.75rem;
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.pillar-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.65;
}

.about-cta {
  padding: 4rem 1.5rem;
  text-align: center;
}

.about-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--white);
  margin: 0 0 0.75rem;
}

.about-cta-inner p {
  margin: 0 0 1.5rem;
  color: var(--white-muted);
}

/* —— Legal / policy documents —— */
.legal-page {
  padding: 3rem 1.5rem 5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange-bright);
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--amber-soft);
}

.legal-back span {
  font-size: 1.1rem;
  line-height: 1;
}

.legal-head h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.legal-updated {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.45);
  margin: 0 0 2rem;
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin: 2.25rem 0 0.75rem;
  line-height: 1.25;
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--white-muted);
  line-height: 1.75;
}

.legal-page p {
  margin: 0 0 1rem;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--amber-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a:hover {
  color: var(--white);
}

/* —— Footer —— */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: var(--navy-950);
}

.site-footer--premium {
  border-top: 1px solid #f7e3d5;
  position: relative;
  padding: 0;
  border-top: none;
  overflow: hidden;
  background: var(--navy-900);
}

.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 240px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.footer-premium-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.footer-col-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.footer-logo .brand-icon {
  color: var(--amber-soft);
}

.footer-tagline {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--white-muted);
  max-width: 280px;
}

.footer-concierge {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
}

.footer-concierge-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber-soft);
  margin-bottom: 0.35rem;
}

.footer-concierge a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}

.footer-concierge a:hover {
  color: var(--orange-bright);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.65rem;
}

.footer-list a {
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-list a[aria-current="page"] {
  color: var(--amber-soft);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.85rem;
  color: #000000;
}

.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer-meta-row a {
  font-size: 0.8rem;
  color: #000000;
  transition: color 0.2s ease;
}

.footer-meta-row a:hover {
  color: #000000;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head--row {
    grid-template-columns: 1fr;
  }

  .section-lead--narrow {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .journal-inner {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-visual {
    order: -1;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 5.5rem 1.5rem 4.5rem 3rem;
    gap: 2.5rem;
  }

  .hero-carousel {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-carousel-bar {
    justify-content: center;
  }
}



.nav-overlay {
  position: fixed;
  inset: 0; 
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.nav-mobile-top {
  display: none;
}

.nav-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.nav-links {

  transition: right 0.35s ease;
}

.nav-links.is-open {
  right: 0;
}


@media (min-width: 768px) {

  .nav-drawer-header { 

    display: none!important;
  }

}


@media (max-width: 768px) {


  
/* container */
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px 16px;
  gap: 0;
}

/* header */
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* each item equal spacing */
.nav-links li {
  width: 100%;
}

/* links */
.nav-links li a {
  display: block;
  padding: 16px 0;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

/* divider lines */
.nav-links li:not(.nav-drawer-header):not(.nav-cta-wrap) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* remove last divider */
.nav-links li:last-child {
  border-bottom: none;
}

/* CTA button spacing fix */
.nav-cta-wrap {
  margin-top: 18px;
  border: none !important;
  display: flex;
  justify-content: center;
}

/* button full width clean */
.nav-cta {
  width: 80%;
  text-align: center;
}
  
  .nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links.is-open {
    right: 0;
  }

  .nav-mobile-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: block;
  }
}



.nav-drawer-header {
  display: flex;
gap: 50px;
}

.drawer-logo {
  width: 90px;
  height: auto;
}

.nav-close {
  border: 0;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-close:hover {
  background: rgba(255,255,255,0.12);
}



/* ///////////// */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }


  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width:min(217px, 88vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.5rem 2rem;
    /* gap: 1.25rem; */
    background: rgba(10, 15, 26, 0.96);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--glass-border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 99;
  }


  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-cta-wrap {
    margin-left: 0;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-search-fields {
    grid-template-columns: 1fr;
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-search {
    width: 100%;
  }

  .hero--split {
    min-height: auto;
  }

  .hero-split {
    padding: 5.25rem 1.25rem 4rem 2.5rem;
  }

  .hero-progress-inner {
    height: 220px;
  }

  .hero-carousel-stack {
    height: 340px;
    max-width: 280px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .packages-track {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1921px) {
  .hero--split {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg-pane {
    transition: none;
  }

  .hero-bg-pane.is-active {
    transform: none;
  }

  .hero-display.is-switching,
  .hero-desc.is-switching {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .hero-progress-knob {
    transition: none;
  }

  .hero-stack-card {
    transition: none;
  }

  .hero-carousel-stack--enter .hero-stack-card {
    animation: none !important;
  }

  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .scroll-hint-line {
    animation: none;
  }

  .dest-card,
  .dest-card-media img,
  .feature-card,
  .package-card,
  .package-media img,
  .btn {
    transition: none;
  }

  .dest-card:hover,
  .feature-card:hover,
  .package-card:hover {
    transform: none;
  }

  .pillar-card:hover {
    transform: none;
  }
}

/* ===== HERO SEARCH OVERLAY ===== */
.hero-search-wrapper {
  position: absolute;
  left: 50%;
  bottom: -83px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1120px;
  z-index: 12;
  padding: 0 20px;
  margin-top: 0;
}

.hero-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
}

.hero-search-fields {
  display: flex;
  flex: 1;
  gap: 12px;
  min-width: 0;
}

.hero-search .field {
  position: relative;
  flex: 1;
  min-width: 0;
}

.hero-search .field-label {
  display: none;
}

.hero-search .field-icon input,
.hero-search .field-icon select {
  width: 100%;
  height: 56px;
  padding: 0 42px 0 44px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease;
}

.hero-search .field-icon input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.hero-search .field-icon input:focus,
.hero-search .field-icon select:focus {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.hero-search select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.hero-search input[readonly] {
  cursor: pointer;
}

.field-svg {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
  z-index: 2;
}

.field-svg svg {
  width: 18px;
  height: 18px;
  display: block;
}

.field-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
  z-index: 2;
}

#trip-dates {
  padding-right: 16px;
}

.btn-search {
  flex: 0 0 auto;
  min-width: 136px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  white-space: nowrap;
  padding: 0 26px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

.nav-links a:not(.btn) {
  color: #fff !important;
}

.h-logo {
  color: #fff;
}

input::placeholder {
  color: #6b7280;
}

@media (max-width: 991px) {
  .hero-search-wrapper {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    max-width: 100%;
    padding: 0 16px;
    margin-top: -34px;
  }

  .hero-search {
    border-radius: 22px;
    padding: 14px;
  }

  .hero-search-fields {
    gap: 10px;
  }

  .btn-search {
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .dest-card {
    border-radius: 10px !important;
  }

  .dest-card-media {
    height: auto;
  }

  .hero-search-wrapper {
    margin-top: -24px;
    padding: 0 14px;
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
  }

  .hero-search-fields {
    flex-direction: column;
    gap: 10px;
  }

  .hero-search .field-icon input,
  .hero-search .field-icon select {
    height: 50px;
    border-radius: 14px;
    font-size: 13px;
  }

  .btn-search {
    width: 100%;
    min-width: 100%;
    height: 50px;
    border-radius: 14px;
    padding: 0 20px;
    box-shadow: none;
  }


}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5fb;
}

.journey-section {
  padding: 80px 20px;
  background: #f5f5fb;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px 1fr;
  align-items: center;
  gap: 60px;
}

/* Left */
.journey-image-wrap {
  display: flex;
  justify-content: center;
}

.journey-image-card {
  position: relative;
  width: 100%;
  max-width: 433px;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
}

.journey-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.experience-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #ff7a45, #ff5a36);
  color: #fff;
  padding: 20px 22px;
  border-radius: 18px;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(255, 90, 54, 0.25);
}

.experience-badge h3 {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.experience-badge p {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Right */
.journey-content {
  width: 100%;
}

.journey-subtitle {
  display: inline-block;
  font-size: 14px;
  color: #6b5cff;
  font-weight: 600;
  margin-bottom: 14px;
}

.journey-title {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.journey-text {
  font-size: 16px;
  line-height: 1.8;
  color: #6c6c78;
  margin-bottom: 28px;
  max-width: 650px;
}

.journey-quote {
  background: #fff;
  border-left: 4px solid #6b5cff;
  padding: 24px 24px;
  border-radius: 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(20, 20, 43, 0.05);
}

.journey-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px 26px;
  margin-bottom: 34px;
}

.feature-item {
  position: relative;
  padding-left: 28px;
  color: #3f3f4d;
  font-size: 15px;
  font-weight: 500;
}

.feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #6b5cff;
  font-size: 14px;
  font-weight: bold;
}

/* Bottom */
.journey-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.journey-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #6b5cff;
  color: #fff;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.journey-btn:hover {
  background: #5646f2;
}

.btn-icon {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #6b5cff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.journey-avatars {
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.journey-avatars img,
.avatar-more {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #f5f5fb;
  margin-left: -10px;
  object-fit: cover;
}

.journey-avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff7a45;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .journey-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-image-wrap {
    justify-content: flex-start;
  }

  .journey-title {
    font-size: 42px;
  }

  .journey-image-card img {
    height: 460px;
  }
}

@media (max-width: 768px) {
  .journey-section {
    padding: 60px 16px;
  }

  .journey-title {
    font-size: 34px;
  }

  .journey-text {
    font-size: 15px;
  }

  .journey-features {
    grid-template-columns: 1fr;
  }

  .journey-image-card {
    max-width: 100%;
  }

  .journey-image-card img {
    height: 400px;
  }

  .experience-badge {
    padding: 16px 18px;
    min-width: 105px;
  }

  .experience-badge h3 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .journey-title {
    font-size: 28px;
  }

  .journey-quote {
    padding: 18px;
    font-size: 14px;
  }

  .journey-btn {
    width: 100%;
    justify-content: center;
  }

  .journey-bottom {
    align-items: flex-start;
    gap: 18px;
  }

  .journey-image-card img {
    height: 320px;
  }
}




/* ///////////////////// */
/* Section */
.tour-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.tour-header {
  text-align: center;
  margin-bottom: 50px;
}

.tour-subtitle {
  font-size: 14px;
  color: #e08a57;
  font-style: italic;
}

.tour-title {
  font-size: 40px;
  font-weight: 800;
  margin: 10px 0;
}

.tour-desc {
  color: #6b6b6b;
  max-width: 500px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;
}

/* Grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.tour-img {
  position: relative;
  height: 420px;
  border-radius: 0 80px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}


.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f4b042;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: bold;
}


.tour-inner {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 0 50px ;
  padding: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Tag */
.tour-tag {
  font-size: 11px;
  color: #f28b54;
  background: #fff2ea;
  padding: 5px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Text */
.tour-inner h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.tour-inner p {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

/* Bottom */
.tour-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.stars {
  color: #f4b400;
      margin-left: 19px;
}

/* Button */
.tour-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.tour-btn {
  background: #ef8f52;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.tour-btn:hover {
  background: #d9773c;
}

/* Responsive */
@media (max-width: 991px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-img {
    height: 340px;
  }

  .tour-title {
    font-size: 26px;
  }

  .tour-desc {
    font-size: 14px;
  }

  .tour-inner h3 {
    font-size: 18px;
  }

  .tour-btn {
    width: 100%;
    display: block;
  }
}








.quote-banner {
  position: relative;
  padding: 100px 20px;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}

/* overlay */
.quote-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.75), rgba(0,0,0,0.4));
}

/* container */
.quote-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  text-align: center;
  z-index: 2;
  color: #fff;
}

/* subtitle */
.quote-sub {
  font-size: 14px;
  color: #ffb37a;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

/* title */
.quote-title {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 20px;
}

/* description */
.quote-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 30px;
}

/* button */
.quote-btn {
  display: inline-block;
  background: #ff7a45;
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #e56735;
}

/* responsive */
@media (max-width: 768px) {
  .quote-banner {
    padding: 70px 16px;
  }

  .quote-title {
    font-size: 28px;
  }

  .quote-desc {
    font-size: 14px;
  }

  .quote-btn {
    width: 100%;
  }
}



/* ===== MODAL INPUT BORDER FIX ===== */
#enquiry-modal .enquiry-form .field input,
#enquiry-modal .enquiry-form .field textarea {
  border: 1.5px solid #94a3b8;
 }

#enquiry-modal .enquiry-form .field input:focus,
#enquiry-modal .enquiry-form .field textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
  background: #fff;
}

#enquiry-modal .enquiry-form .field textarea {
  min-height: 120px;
  resize: vertical;
}

#enquiry-modal .enquiry-form .field-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
}

#enquiry-modal .modal-close {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

#enquiry-modal .modal-title {
  color: #0f172a;
  margin-bottom: 18px;
}

#enquiry-modal .modal-sub {
  color: #475569;
}




/* //////////// */


.packages-bottom {
  text-align: center;
  margin-top: 40px;
}

.packages-btn {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 30px;
}




#custom-package-field {
  display: none;
}

#custom-package-select {
  width: 100%;
  min-height: 56px;
  padding: 0 46px 0 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  background-color: #fff;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

#custom-package-select:hover {
  border-color: #f59e0b;
}

#custom-package-select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

#custom-package-select option {
  color: #111827;
  background: #fff;
}

#custom-package-select optgroup {
  color: #111827;
  font-style: normal;
  font-weight: 700;
}





/* ===== MODAL THIN SCROLLBAR ===== */
#enquiry-modal .modal-panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.85) transparent;
}

#enquiry-modal .modal-panel::-webkit-scrollbar {
  width: 6px;
}

#enquiry-modal .modal-panel::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

#enquiry-modal .modal-panel::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.85);
  border-radius: 999px;
}

#enquiry-modal .modal-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 116, 139, 0.95);
}

