/* =========================================
   MyWay Destination — Navbar + Hero styles
   Palette from skybound-trade-travels.html
   ========================================= */

:root {
  /* Source palette */
  --cream: #fff8f0;
  --sand: #f4e8d6;
  --ink: #221a17;
  --coral: #f1583a;
  --coral-deep: #d5432a;
  --teal: #0e7c77;
  --teal-deep: #0a5f5b;
  --gold: #ffb648;
  --rule: rgba(34, 26, 23, 0.12);

  /* Mapped aliases used across the site */
  --brand-ink: var(--ink);
  --brand-muted: rgba(34, 26, 23, 0.68);
  --brand-accent: var(--coral);
  --brand-accent-hover: var(--coral-deep);
  --brand-sand: var(--sand);
  --nav-shadow: 0 1px 0 var(--rule), 0 8px 24px rgba(34, 26, 23, 0.06);
  --nav-height: 72px;
  --hero-min-height: clamp(420px, 62vh, 620px);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius-lg: 1.35rem;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 50px rgba(34, 26, 23, 0.14);
  --shadow-card: 0 14px 40px rgba(34, 26, 23, 0.1);
  --surface: #ffffff;
  --dark-surface: #2a211c;
}

/* ----- Base ----- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--brand-ink);
  background: var(--cream);
}

:focus-visible {
  outline: 2px solid var(--coral-deep);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 2000;
  border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
  left: 0;
}

/* ----- Sticky cream navbar ----- */
.site-navbar {
  min-height: var(--nav-height);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background: rgba(255, 248, 240, 0.92) !important;
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--nav-shadow);
  z-index: 1030;
  backdrop-filter: blur(8px);
}

.site-navbar > .container {
  max-width: 1280px;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand-mark--image {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0;
  animation: none !important;
  overflow: visible;
}

.brand-mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--brand-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-navbar .nav-link {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-ink) !important;
  transition: color 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: var(--coral-deep) !important;
}

.site-navbar .nav-link.active {
  color: var(--coral-deep) !important;
  font-weight: 600;
}

.site-navbar .current-menu-item > .nav-link,
.site-navbar .current_page_item > .nav-link {
  color: var(--coral-deep) !important;
  font-weight: 600;
}

@media (min-width: 992px) {
  .site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.2rem;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
    border-radius: 2px;
  }

  .site-navbar .nav-link:hover::after,
  .site-navbar .nav-link:focus::after,
  .site-navbar .nav-link.active::after,
  .site-navbar .current-menu-item > .nav-link::after,
  .site-navbar .current_page_item > .nav-link::after {
    transform: scaleX(1);
  }
}

.site-navbar .navbar-toggler {
  border: 1px solid var(--rule);
  padding: 0.4rem 0.55rem;
  box-shadow: none;
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(241, 88, 58, 0.25);
}

.navbar-cta {
  margin-top: 0.75rem;
}

.navbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(34, 26, 23, 0.1);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.navbar-social-link:hover,
.navbar-social-link:focus-visible,
.navbar-social-link:active {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .navbar-cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--rule);
    margin-top: 0.75rem;
  }

  .site-navbar .nav-link {
    padding: 0.75rem 0.25rem;
  }
}

/* =========================================
   HERO SECTION — tall cinematic slider
   ========================================= */

.hero-section {
  position: relative;
  background: var(--cream);
  overflow: visible;
  padding-bottom: 0;
}

.hero-stage {
  position: relative;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-media,
.hero-image {
  border-radius: 0 !important;
}

.hero-carousel {
  min-height: var(--hero-min-height);
  height: var(--hero-min-height);
  overflow: hidden;
  border-radius: 0 !important;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: var(--hero-min-height);
  height: var(--hero-min-height);
  border-radius: 0 !important;
}

/* Full-bleed image — square edges, no curve */
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a403c;
  border-radius: 0 !important;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  border-radius: 0 !important;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}

.carousel-item.active .hero-image {
  transform: scale(1);
}

/* Cream-forward overlay — no green wash behind the inquiry form */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(255, 248, 240, 0.95) 0%,
      rgba(255, 248, 240, 0.72) 32%,
      rgba(255, 248, 240, 0.2) 58%,
      rgba(34, 26, 23, 0.28) 100%
    ),
    linear-gradient(
      to top,
      rgba(255, 248, 240, 0.92) 0%,
      rgba(255, 248, 240, 0.35) 18%,
      transparent 40%
    );
}

/* Info block — keep clear of carousel arrows + enquiry card */
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  text-align: left;
  padding: clamp(2.75rem, 7vh, 4.5rem) clamp(4rem, 8vw, 5.75rem) clamp(3.5rem, 8vh, 5.25rem);
  color: var(--brand-ink);
}

/* Modern glass panel */
.hero-glass {
  max-width: min(36rem, 90vw);
  margin: 0;
  padding: clamp(1.55rem, 2.8vw, 2.15rem) clamp(1.55rem, 2.8vw, 2.35rem);
  border-radius: 1.35rem;
  background: rgba(255, 248, 240, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 50px rgba(34, 26, 23, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.55) inset;
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.38rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(241, 88, 58, 0.1);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
  margin: 0 0 0.95rem;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.65;
  color: var(--brand-muted);
  max-width: 40ch;
}

.hero-actions {
  display: none;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn-hero-primary {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
  box-shadow: 0 10px 24px -10px rgba(241, 88, 58, 0.55);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(241, 88, 58, 0.65);
}

.btn-hero-secondary {
  background: rgba(255, 248, 240, 0.95);
  color: var(--brand-ink);
  border: 2px solid var(--rule);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Custom prev/next controls — narrow hit area so they don't cover the glass card */
.hero-carousel .carousel-control-prev.hero-control,
.hero-carousel .carousel-control-next.hero-control {
  width: 3.25rem;
  opacity: 1;
  z-index: 30;
  pointer-events: auto;
}

.hero-control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.92);
  color: var(--brand-ink);
  box-shadow: 0 8px 24px rgba(34, 26, 23, 0.18);
  font-size: 1.25rem;
  backdrop-filter: blur(8px);
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-control:hover .hero-control-icon,
.hero-control:focus .hero-control-icon {
  background: var(--coral);
  color: #fff;
  transform: scale(1.06);
}

.hero-carousel .carousel-control-prev.hero-control {
  left: 0.35rem;
  justify-content: flex-start;
  padding-left: 0.15rem;
}

.hero-carousel .carousel-control-next.hero-control {
  right: 0.35rem;
  justify-content: flex-end;
  padding-right: 0.15rem;
}

@media (min-width: 992px) {
  .hero-carousel .carousel-control-prev.hero-control {
    left: 0.75rem;
  }

  /* Same edge margin as left arrow — sits to the right of the enquiry card */
  .hero-carousel .carousel-control-next.hero-control {
    right: 0.75rem;
  }

  /* Leave room for the right arrow beside the form */
  .hero-enquiry-overlay {
    right: calc(0.75rem + 3.25rem + 0.65rem);
  }

  /* Keep hero copy clear of the enquiry card + arrow */
  .hero-caption {
    padding-left: clamp(4.5rem, 6.5vw, 6rem);
    padding-right: calc(18.5rem + 0.75rem + 3.25rem + 0.65rem + 1.35rem);
  }

  .hero-glass {
    max-width: min(34rem, 100%);
  }

  /* Dots clear of enquiry card + right arrow */
  .hero-indicators {
    right: calc(18.5rem + 0.75rem + 3.25rem + 0.65rem + 0.75rem);
    left: 0;
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    padding-left: clamp(3rem, 5vw, 4.5rem);
  }
}

/* Pagination dots — clear of enquiry card on desktop */
.hero-indicators {
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  z-index: 5;
  gap: 0.35rem;
}

.hero-indicators [data-bs-target] {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 248, 240, 0.55);
  opacity: 1;
  transition: width 0.25s ease, background-color 0.2s ease, border-radius 0.2s ease;
}

.hero-indicators .active {
  width: 1.65rem;
  border-radius: var(--radius-pill);
  background-color: var(--coral);
}

/* Smooth fade (Bootstrap carousel-fade + slightly longer transition) */
.hero-carousel.carousel-fade .carousel-item {
  transition: opacity 0.85s ease-in-out;
}

/* Entrance animation for glass card */
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-glass.animate-in {
  animation: heroRise 0.7s ease forwards;
}

.hero-glass.is-animating {
  animation: none;
}

.hero-glass.is-animating.animate-in {
  animation: heroRise 0.7s ease forwards;
}

/* Hero search bar — solid cream card above slider (no green behind) */
.hero-search-wrap {
  position: relative;
  z-index: 30;
  margin-top: clamp(-3.25rem, -5vh, -2.5rem);
  padding: 0 0 0.25rem;
  pointer-events: none;
}

.hero-search-wrap .container {
  pointer-events: auto;
}

.hero-finder-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(34, 26, 23, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 20px 48px rgba(34, 26, 23, 0.14);
  padding: 1.15rem 1.25rem;
  animation: searchFloatIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-finder-copy {
  display: grid;
  gap: 0.2rem;
  min-width: min(100%, 18rem);
  flex: 1 1 16rem;
}

.hero-finder-lead {
  font-size: 0.88rem;
  color: var(--brand-muted);
  line-height: 1.4;
  max-width: 28rem;
}

.hero-finder-bar .btn-hero-search {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-search-card {
  position: relative;
  z-index: 31;
  background: #ffffff;
  border: 1px solid rgba(34, 26, 23, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 20px 48px rgba(34, 26, 23, 0.14);
  padding: 1.15rem 1.1rem 1.2rem;
  animation: searchFloatIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes searchFloatIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .hero-search-card {
    padding: 1.25rem 1.35rem 1.3rem;
  }
}

.hero-search-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.85rem;
  margin-bottom: 1.05rem;
}

.hero-search-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 500;
}

.hero-search-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: end;
}

@media (min-width: 768px) {
  .hero-search-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  .hero-search-action {
    grid-column: 1 / -1;
  }

  .hero-search-action .btn-hero-search {
    width: 100%;
  }
}

.hero-search-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.hero-search-input {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-search-input i {
  position: absolute;
  left: 0.85rem;
  color: var(--teal);
  font-size: 1rem;
  pointer-events: none;
}

.hero-search-input input,
.hero-search-input select {
  width: 100%;
  border: 1.5px solid var(--rule);
  border-radius: 0.85rem;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.78rem 0.9rem 0.78rem 2.35rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hero-search-input select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%22221A17' d='M1.4 0.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.hero-search-input input:focus,
.hero-search-input select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 0.2rem rgba(241, 88, 58, 0.15);
}

.hero-search-action {
  display: grid;
}

.btn-hero-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 3.05rem;
  padding: 0.75rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--coral), var(--coral-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px -10px rgba(241, 88, 58, 0.55);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-hero-search:hover,
.btn-hero-search:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(241, 88, 58, 0.65);
}

.hero-search-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-deep);
}

/* Stats band below slider */
.hero-stats-band {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(14, 124, 119, 0.06), transparent 60%),
    var(--cream);
  padding: 0.75rem 0 0;
}

.hero-stats-band .hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 1rem 0.9rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 12px 28px rgba(34, 26, 23, 0.08);
}

@media (min-width: 768px) {
  .hero-stats-band .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
}

.hero-stat {
  text-align: center;
  padding: 0.45rem 0.25rem;
  position: relative;
}

@media (min-width: 768px) {
  .hero-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--rule);
  }
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
}

.hero-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand-muted);
}

.hero-stats {
  display: none;
}

/* =========================================
   SHARED SECTIONS, CARDS, PAGES
   ========================================= */

.section-block {
  padding: clamp(1.75rem, 3.2vw, 2.75rem) 0;
  position: relative;
  background: var(--cream);
}

/* Keep consecutive sections compact (avoid double empty gaps) */
.section-block + .section-block {
  padding-top: clamp(1.25rem, 2.4vw, 1.9rem);
}

.hero-stats-band + .section-block {
  padding-top: clamp(1.35rem, 2.6vw, 2rem);
}

/* ----- Light / sand / dark section rhythm ----- */
.section-light {
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(255, 182, 72, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(14, 124, 119, 0.07), transparent 50%),
    var(--cream);
  color: var(--ink);
}

.section-sand {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(241, 88, 58, 0.08), transparent 50%),
    linear-gradient(165deg, #f7ecdc 0%, var(--sand) 48%, #efe0cc 100%);
  color: var(--ink);
}

.section-dark {
  background:
    radial-gradient(ellipse 65% 50% at 85% 10%, rgba(14, 124, 119, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(241, 88, 58, 0.18), transparent 50%),
    linear-gradient(155deg, #1a1310 0%, #241c18 45%, #0f2f2d 100%);
  color: rgba(255, 248, 240, 0.92);
}

.section-dark .section-eyebrow {
  color: var(--gold);
}

.section-dark .section-title,
.section-dark .section-lead,
.section-dark .seo-prose p,
.section-dark .process-step h3,
.section-dark .process-step p {
  color: inherit;
}

.section-dark .section-title {
  color: #fff8f0;
}

.section-dark .section-lead,
.section-dark .seo-prose p,
.section-dark .process-step p {
  color: rgba(255, 248, 240, 0.72);
}

.section-dark .btn-see-all {
  background: rgba(255, 248, 240, 0.1);
  border-color: rgba(255, 248, 240, 0.22);
  color: #fff8f0;
  box-shadow: none;
}

.section-dark .btn-see-all:hover,
.section-dark .btn-see-all:focus {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.section-dark .pkg-card,
.section-dark .service-card,
.section-dark .contact-form,
.section-dark .process-step,
.section-dark .faq-item {
  background: rgba(255, 248, 240, 0.96);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.section-dark .process-step h3 {
  color: var(--ink);
}

.section-dark .process-step p {
  color: var(--brand-muted);
}

.section-dark .faq-item summary {
  color: var(--ink);
}

.section-dark .faq-item p {
  color: var(--brand-muted);
}

.section-dark .media-slider-nav {
  background: rgba(255, 248, 240, 0.12);
  border-color: rgba(255, 248, 240, 0.22);
  color: #fff8f0;
}

.section-dark .media-slider-nav:hover,
.section-dark .media-slider-nav:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.section-dark .contact-info-item {
  background: rgba(255, 248, 240, 0.08);
  border-color: rgba(255, 248, 240, 0.14);
  color: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(10px);
}

.section-dark .contact-info-item:hover:not(.static) {
  border-color: rgba(241, 88, 58, 0.55);
  background: rgba(255, 248, 240, 0.12);
}

.section-dark .contact-info-item,
.section-dark .contact-info-item strong,
.section-dark .contact-info-item a {
  color: rgba(255, 248, 240, 0.92);
}

.section-dark .contact-info-item span span {
  color: rgba(255, 248, 240, 0.62);
}

.section-dark .contact-info-item a:hover {
  color: var(--gold);
}

.section-dark .contact-info-icon {
  background: rgba(255, 248, 240, 0.12);
  color: var(--gold);
}

.section-dark .contact-form {
  background: #fff8f0;
  border: 0;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.section-muted {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(241, 88, 58, 0.08), transparent 50%),
    linear-gradient(165deg, #f7ecdc 0%, var(--sand) 48%, #efe0cc 100%);
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-eyebrow {
  margin: 0 0 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--brand-ink);
}

.section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--brand-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--brand-ink);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34, 26, 23, 0.06);
  transition: transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-see-all:hover,
.btn-see-all:focus {
  color: var(--coral-deep);
  border-color: var(--coral);
  transform: translateY(-1px);
}

/* Package cards */
.pkg-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(34, 26, 23, 0.07);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(34, 26, 23, 0.14);
}

.pkg-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}

.pkg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.pkg-card:hover .pkg-card-media img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(34, 26, 23, 0.12);
}

.pkg-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.35rem;
}

.pkg-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.55rem;
}

.pkg-title a {
  color: var(--brand-ink);
  text-decoration: none;
}

.pkg-title a:hover {
  color: var(--brand-accent);
}

.pkg-text {
  margin: 0 0 0.9rem;
  color: var(--brand-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}

.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand-ink);
}

.pkg-meta i {
  color: var(--teal);
  margin-right: 0.25rem;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--rule);
}

.pkg-price {
  font-size: 0.88rem;
  color: var(--brand-muted);
}

.pkg-price strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.pkg-price.pkg-cta {
  color: var(--teal-deep);
  font-weight: 600;
}

.pkg-price.pkg-cta strong {
  color: var(--teal-deep);
  font-size: 0.98rem;
}

.pkg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--coral-deep);
  text-decoration: none;
}

.pkg-link:hover {
  color: var(--coral);
}

/* Visa / service cards */
.service-card {
  position: relative;
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 10px 28px rgba(34, 26, 23, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(34, 26, 23, 0.1);
}

.service-card-featured {
  background: linear-gradient(165deg, #ffffff 0%, #ffe8e1 100%);
  border-color: rgba(241, 88, 58, 0.25);
}

.service-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--coral);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: rgba(14, 124, 119, 0.12);
  color: var(--teal);
  font-size: 1.35rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
}

.service-title a {
  color: var(--brand-ink);
  text-decoration: none;
}

.service-title a:hover {
  color: var(--brand-accent);
}

.service-text {
  color: var(--brand-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 0.9rem;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
}

.service-points li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--brand-ink);
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--coral);
}

/* About teaser */
.about-visual {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  background: var(--sand);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.about-checklist i {
  color: var(--teal);
  margin-top: 0.15rem;
}

.section-dark .about-checklist li {
  color: rgba(255, 248, 240, 0.9);
}

.section-dark .about-checklist i {
  color: var(--gold);
}

.section-dark .about-visual {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

/* Contact */
.contact-info-panel {
  display: grid;
  gap: 0.85rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.contact-info-item:hover:not(.static) {
  border-color: var(--coral);
  transform: translateY(-2px);
}

.contact-info-item span span {
  display: block;
  font-size: 0.9rem;
  color: var(--brand-muted);
}

.contact-info-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  background: rgba(14, 124, 119, 0.12);
  color: var(--teal);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-form {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 12px 32px rgba(34, 26, 23, 0.06);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-ink);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0.75rem;
  border-color: var(--rule);
  padding: 0.7rem 0.9rem;
  background: var(--cream);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 0.2rem rgba(241, 88, 58, 0.18);
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--teal-deep);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: #1a1310;
  color: rgba(255, 248, 240, 0.75);
  padding: 2.25rem 0 1.1rem;
}

.footer-brand {
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand .brand-name {
  color: #fff;
  font-weight: 700;
}

.footer-text {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 22rem;
}

.footer-heading {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: rgba(255, 248, 240, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 248, 240, 0.12);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(255, 182, 72, 0.25), transparent 55%),
    linear-gradient(125deg, rgba(10, 95, 91, 0.94), rgba(213, 67, 42, 0.78)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-visa {
  background:
    linear-gradient(120deg, rgba(10, 95, 91, 0.92), rgba(14, 124, 119, 0.78)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.page-hero-tours {
  background:
    linear-gradient(120deg, rgba(34, 26, 23, 0.88), rgba(241, 88, 58, 0.7)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.page-hero-about {
  background:
    linear-gradient(120deg, rgba(10, 95, 91, 0.92), rgba(255, 182, 72, 0.55)),
    url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.page-hero-contact {
  background:
    linear-gradient(120deg, rgba(34, 26, 23, 0.9), rgba(14, 124, 119, 0.75)),
    url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.breadcrumb-nav {
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #fff;
}

.breadcrumb-nav .separator {
  margin: 0 0.4rem;
  opacity: 0.6;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}

.page-hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

/* Inner page CTA band */
.page-cta-band {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}

.page-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Detail page layout */
.detail-hero-image {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.detail-hero-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detail-content h2,
.detail-sidebar h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.detail-content p {
  color: var(--brand-muted);
  line-height: 1.7;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.detail-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px solid var(--rule);
  color: var(--brand-ink);
}

.detail-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.detail-sidebar-card {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  padding: 1.35rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(34, 26, 23, 0.07);
  box-shadow: var(--shadow-card);
}

.detail-price-tag {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.detail-price-note {
  font-size: 0.85rem;
  color: var(--brand-muted);
  margin-bottom: 1.15rem;
}

.itinerary-day {
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  border-radius: 0.9rem;
  background: var(--sand);
  border-left: 3px solid var(--coral);
}

.itinerary-day strong {
  display: block;
  margin-bottom: 0.25rem;
}

.map-embed {
  border: 0;
  border-radius: 1.15rem;
  width: 100%;
  min-height: 320px;
  box-shadow: 0 10px 28px rgba(34, 26, 23, 0.08);
}

.related-strip {
  padding-top: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(34, 26, 23, 0.08);
}

.related-strip .row > [class*="col"] > .pkg-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  background: var(--sand);
  border: 1px solid rgba(34, 26, 23, 0.06);
  box-shadow: 0 4px 16px rgba(34, 26, 23, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-strip .row > [class*="col"] > .pkg-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(14, 124, 119, 0.2);
  color: var(--teal-deep);
}

/* =========================================
   MEDIA SLIDERS + LIGHTBOX
   ========================================= */

.media-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
}

.media-slider-viewport {
  overflow: hidden;
  min-width: 0;
  background: transparent;
}

.media-slider-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.15rem 0.1rem 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: transparent;
}

.media-slider-track::-webkit-scrollbar {
  display: none;
}

.media-slider-nav {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 26, 23, 0.06);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.media-slider-nav:hover,
.media-slider-nav:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: scale(1.05);
}

.media-card {
  position: relative;
  flex: 0 0 min(78vw, 280px);
  aspect-ratio: 4 / 5;
  border: 0;
  padding: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: transparent;
  scroll-snap-align: start;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 28px rgba(34, 26, 23, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .media-card {
    flex-basis: 260px;
  }
}

@media (min-width: 1200px) {
  .media-card {
    flex-basis: 280px;
  }
}

.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(34, 26, 23, 0.16);
  outline: none;
}

.section-dark .media-card {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  outline: 1px solid rgba(255, 248, 240, 0.08);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.media-card:hover img {
  transform: scale(1.05);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(34, 26, 23, 0.55) 0%,
    rgba(34, 26, 23, 0.08) 42%,
    transparent 62%
  );
  pointer-events: none;
}

.media-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 248, 240, 0.92);
  color: var(--coral-deep);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-card-caption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.media-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: rgba(241, 88, 58, 0.95);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 12px 28px rgba(241, 88, 58, 0.4);
  pointer-events: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.media-lightbox[hidden] {
  display: none !important;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 19, 16, 0.82);
  backdrop-filter: blur(6px);
}

.media-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-lightbox-close {
  align-self: flex-end;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.95);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.media-lightbox-close:hover,
.media-lightbox-close:focus-visible {
  background: var(--coral);
  color: #fff;
}

.media-lightbox-stage {
  background: #0f0c0b;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.media-lightbox-stage img,
.media-lightbox-stage video,
.media-lightbox-stage iframe {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  border: 0;
}

.media-lightbox-stage img {
  object-fit: contain;
  background: #0f0c0b;
}

.media-lightbox-stage iframe,
.media-lightbox-stage video {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 220px;
}

.media-lightbox-caption {
  margin: 0;
  color: rgba(255, 248, 240, 0.9);
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.45;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

  .media-slider-nav {
    display: none;
  }
}

/* =========================================
   SEO CONTENT + FAQ
   ========================================= */

.seo-prose {
  max-width: 48rem;
}

.seo-prose p {
  margin: 0 0 1rem;
  color: var(--brand-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.seo-prose p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--brand-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.process-step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 1.1rem;
  padding: 1.25rem 1.15rem;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(14, 124, 119, 0.12);
  color: var(--teal-deep);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.process-step p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* =========================================
   PAGE LOAD INTRO — airplane + brand
   ========================================= */

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fff8f0 0%, #f4e8d6 45%, #e8f3f2 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro-inner {
  position: relative;
  width: min(420px, 88vw);
  text-align: center;
}

.site-intro-sky {
  position: relative;
  height: 120px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.intro-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 40px;
  opacity: 0.9;
}

.intro-cloud-1 {
  width: 70px;
  height: 22px;
  top: 18px;
  left: 8%;
  animation: cloudDrift 3.2s ease-in-out infinite;
}

.intro-cloud-2 {
  width: 54px;
  height: 18px;
  top: 48px;
  right: 12%;
  animation: cloudDrift 2.8s ease-in-out infinite reverse;
}

.intro-cloud-3 {
  width: 40px;
  height: 14px;
  top: 72px;
  left: 42%;
  animation: cloudDrift 3.6s ease-in-out infinite;
}

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.intro-flight-path {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 52%;
  border-top: 2px dashed rgba(14, 124, 119, 0.35);
}

.intro-plane {
  position: absolute;
  top: 38%;
  left: -12%;
  color: var(--coral);
  font-size: 2rem;
  filter: drop-shadow(0 6px 12px rgba(241, 88, 58, 0.35));
  animation: planeFly 2.1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.intro-plane i {
  display: inline-block;
  transform: rotate(45deg);
}

@keyframes planeFly {
  0% {
    left: -15%;
    opacity: 0;
    transform: translateY(8px);
  }
  15% {
    opacity: 1;
  }
  100% {
    left: 88%;
    opacity: 1;
    transform: translateY(-6px);
  }
}

.site-intro-brand {
  animation: brandPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.intro-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  font-size: 1.05rem;
  border-radius: 14px;
  animation: none;
}

.intro-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.intro-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

@keyframes brandPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.is-intro-locked {
  overflow: hidden;
}

/* =========================================
   MODERN MOTION / REVEAL ANIMATIONS
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes brandGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

.brand-mark {
  animation: brandGlow 4s ease-in-out infinite;
}

.btn-hero-search {
  position: relative;
  overflow: hidden;
}

.btn-hero-search::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-hero-search:hover::after {
  transform: translateX(120%);
}

.pkg-card,
.service-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.section-title {
  position: relative;
}

.hero-stats-band .hero-stat-value {
  transition: transform 0.35s ease;
}

.hero-stats-band .hero-stat:hover .hero-stat-value {
  transform: scale(1.08);
  color: var(--coral);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-progress,
  .back-to-top {
    transition: none !important;
  }

  .hero-carousel.carousel-fade .carousel-item,
  .hero-glass.animate-in,
  .btn-hero-primary,
  .btn-hero-secondary,
  .pkg-card,
  .service-card,
  .hero-image,
  .brand-mark,
  .hero-search-card,
  .reveal,
  .intro-plane,
  .intro-cloud,
  .site-intro-brand,
  .media-card,
  .media-card img {
    transition: none !important;
    animation: none !important;
  }

  .site-intro {
    display: none !important;
  }

  .hero-image,
  .carousel-item.active .hero-image {
    transform: none !important;
  }

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

/* =========================================
   CRO / A11Y / PERFORMANCE UI HELPERS
   ========================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 2005;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  pointer-events: none;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-privacy {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--brand-muted);
}

.hero-search-card.was-validated .hero-search-input:has(:invalid) input,
.hero-search-card.was-validated .hero-search-input:has(:invalid) select {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.hero-search-note.is-error,
.form-note.is-error {
  color: #c0392b !important;
}

.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 1040;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(34, 26, 23, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--coral);
  color: #fff;
}

@media (max-width: 575.98px) {
  .back-to-top {
    bottom: 5rem;
    right: 0.85rem;
  }

  .hero-search-wrap {
    margin-top: -2rem;
  }
}

.footer-bottom a {
  color: rgba(255, 248, 240, 0.85);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* =========================================
   DETAIL PAGES — compact + modern quote form
   ========================================= */

.page-hero {
  padding: clamp(1.35rem, 3.2vw, 2rem) 0 clamp(1.15rem, 2.6vw, 1.65rem);
}

.page-hero::after {
  height: 3px;
}

.breadcrumb-nav {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
}

.page-hero-title {
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  margin: 0 0 0.35rem;
  line-height: 1.15;
}

.page-hero-lead {
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 40rem;
}

.page-cta-band {
  padding: clamp(1.35rem, 2.6vw, 2rem) 0;
}

.detail-section {
  padding: clamp(1.15rem, 2.4vw, 1.85rem) 0 clamp(1.5rem, 3vw, 2.25rem) !important;
}

.detail-section > .container {
  max-width: 1120px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 992px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.9fr);
    gap: 1.5rem 1.75rem;
  }
}

.detail-content {
  min-width: 0;
}

.detail-hero-image {
  border-radius: 0.95rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 28px rgba(34, 26, 23, 0.1);
}

/* Exhibition detail hero — controlled height, richer look */
.detail-hero-image--exhibition {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  max-height: clamp(200px, 28vw, 320px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 16px 40px rgba(34, 26, 23, 0.14);
  background: linear-gradient(135deg, #0a5f5b, #1a1310);
}

.detail-hero-image--exhibition::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 19, 16, 0.08) 0%, transparent 35%, rgba(26, 19, 16, 0.45) 100%),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(255, 182, 72, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.detail-hero-image--exhibition img {
  width: 100%;
  height: clamp(200px, 28vw, 320px);
  max-height: 320px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.detail-hero-image--exhibition:hover img {
  transform: scale(1.06);
}

@media (max-width: 575.98px) {
  .detail-hero-image--exhibition,
  .detail-hero-image--exhibition img {
    max-height: 210px;
    height: 210px;
  }
}

.form-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78em;
  color: var(--brand-muted);
}

.detail-content h2 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 1.15rem 0 0.5rem;
  line-height: 1.25;
}

.detail-content h2:first-of-type,
.detail-content > .detail-hero-image + h2 {
  margin-top: 0.15rem;
}

.detail-content p {
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.detail-list {
  margin: 0 0 0.75rem;
}

.detail-list li {
  padding: 0.35rem 0 0.35rem 1.45rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--brand-muted);
  border-bottom: 1px solid rgba(34, 26, 23, 0.05);
}

.detail-list li:last-child {
  border-bottom: 0;
}

.detail-list li::before {
  top: 0.55rem;
}

.itinerary-day {
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(244, 232, 214, 0.65);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--brand-muted);
}

.itinerary-day strong {
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.detail-content .faq-list {
  margin: 0.35rem 0 0 !important;
}

.detail-content .faq-item {
  margin-bottom: 0.45rem;
}

.detail-sidebar {
  min-width: 0;
}

.detail-sidebar-card {
  position: sticky;
  top: calc(var(--nav-height) + 0.75rem);
  padding: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(34, 26, 23, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 36px rgba(34, 26, 23, 0.08);
}

.detail-quote-head {
  padding: 1.1rem 1.15rem 0.95rem;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(255, 182, 72, 0.22), transparent 55%),
    linear-gradient(145deg, #0a5f5b 0%, #0e7c77 55%, #14635f 100%);
  color: #fff;
}

.detail-sidebar-card .detail-price-tag {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: #fff;
}

.detail-sidebar-card .detail-price-note {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 248, 240, 0.78);
}

.detail-meta-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.15rem;
  display: grid;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(34, 26, 23, 0.06);
  background: rgba(255, 248, 240, 0.55);
}

.detail-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  border: 0;
}

.detail-meta-list li::before {
  content: none !important;
}

.detail-meta-list i {
  color: var(--teal);
  font-size: 0.95rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.quote-form {
  padding: 1rem 1.15rem 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.detail-sidebar-card > form:not(.quote-form) {
  padding: 1rem 1.15rem 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.quote-form-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.quote-form-sub {
  margin: -0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--brand-muted);
  line-height: 1.4;
}

.quote-field {
  display: grid;
  gap: 0.3rem;
}

.quote-field .form-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(34, 26, 23, 0.55);
}

.quote-form .form-control,
.quote-form .form-select {
  border: 1px solid rgba(34, 26, 23, 0.1);
  border-radius: 0.7rem;
  background: #faf7f2;
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  color: var(--ink);
  box-shadow: none;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-form .form-control::placeholder {
  color: rgba(34, 26, 23, 0.38);
}

.quote-form .form-control:hover,
.quote-form .form-select:hover {
  border-color: rgba(14, 124, 119, 0.28);
  background: #fff;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 124, 119, 0.14);
}

.quote-form textarea.form-control {
  min-height: 5.25rem;
  resize: vertical;
}

.quote-submit {
  margin-top: 0.15rem;
  padding: 0.75rem 1rem !important;
  border-radius: 0.75rem !important;
  font-weight: 700;
}

.quote-form-secure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--brand-muted);
  text-align: center;
  line-height: 1.35;
}

.quote-form-secure i {
  color: var(--teal);
  font-size: 0.85rem;
}

.quote-form .form-note {
  margin: 0 !important;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(14, 124, 119, 0.08);
  color: var(--teal-deep);
  font-size: 0.82rem;
  text-align: center;
}

.quote-form .form-note.is-error {
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
}

.related-strip {
  padding-top: 1.25rem;
  margin-top: 1.5rem;
}

.related-strip .section-heading {
  margin-bottom: 0.85rem;
}

.related-strip .section-title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.related-strip .row > [class*="col"] > .pkg-link {
  padding: 0.9rem 1.05rem;
  border-radius: 0.85rem;
  box-shadow: none;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .detail-sidebar-card {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .detail-quote-head,
  .quote-form,
  .detail-meta-list {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* =========================================
   HERO QUICK ENQUIRY (Global Visa style)
   ========================================= */

.hero-enquiry-overlay {
  position: absolute;
  right: clamp(1.25rem, 6vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: min(18.5rem, calc(100% - 2.5rem));
  pointer-events: none;
}

.hero-enquiry-backdrop {
  display: none;
}

.hero-enquiry-card {
  pointer-events: auto;
  position: relative;
  background: #ffffff;
  border-radius: 0.7rem;
  padding: 0.95rem 0.95rem 0.85rem;
  border: 1px solid rgba(241, 88, 58, 0.22);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  animation: searchFloatIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  max-height: min(92%, calc(var(--hero-min-height) - 2rem));
  overflow: auto;
}

.hero-enquiry-title {
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 0.45rem;
}

.hero-enquiry-group {
  margin-bottom: 0.45rem;
}

.hero-enquiry-group.mb-0 {
  margin-bottom: 0;
}

.hero-enquiry-form input,
.hero-enquiry-form select,
.hero-enquiry-form textarea {
  width: 100%;
  height: 2.15rem;
  background: #f7f5f2;
  border: 1px solid rgba(34, 26, 23, 0.12);
  border-radius: 0.35rem;
  padding: 0.35rem 0.65rem;
  color: var(--ink);
  font-size: 0.78rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hero-enquiry-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23665c57' d='M1.1 1.1 6 6l4.9-4.9L12 2.2 6 8.2 0 2.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 0.7rem;
  padding-right: 1.7rem;
  cursor: pointer;
}

.hero-enquiry-form select:invalid {
  color: rgba(34, 26, 23, 0.45);
}

.hero-enquiry-form select option,
.hero-enquiry-form select optgroup {
  color: var(--ink);
}

.hero-enquiry-form textarea {
  height: 3.4rem;
  resize: none;
  padding-top: 0.45rem;
}

.hero-enquiry-form input::placeholder,
.hero-enquiry-form textarea::placeholder {
  color: rgba(34, 26, 23, 0.45);
  font-size: 0.78rem;
}

.hero-enquiry-form input:focus,
.hero-enquiry-form select:focus,
.hero-enquiry-form textarea:focus {
  border-color: var(--coral);
  background: #fff;
}

.hero-enquiry-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 0.55rem 0.75rem;
  border-radius: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero-enquiry-btn:hover,
.hero-enquiry-btn:focus-visible {
  background: var(--coral-deep);
  color: #fff;
}

.hero-enquiry-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.hero-enquiry-note {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--teal-deep);
}

.hero-enquiry-note.is-error,
.hero-enquiry-note.text-danger {
  color: #b42318;
}

.hero-enquiry-close {
  display: none;
}

.hero-enquiry-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .hero-enquiry-overlay {
    position: fixed;
    inset: 0;
    right: auto;
    top: auto;
    transform: none;
    width: auto;
    z-index: 1080;
    display: none;
    place-items: center;
    padding: 1rem;
    pointer-events: none;
  }

  body.is-package-finder-open .hero-enquiry-overlay {
    display: grid;
    pointer-events: auto;
  }

  .hero-enquiry-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(26, 19, 16, 0.62);
    backdrop-filter: blur(4px);
    pointer-events: auto;
  }

  .hero-enquiry-card {
    z-index: 1;
    width: min(100%, 22rem);
    max-height: min(92vh, 34rem);
    overflow: auto;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    animation: searchFloatIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-enquiry-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border: 0;
    border-radius: 50%;
    background: rgba(34, 26, 23, 0.08);
    color: var(--ink);
    cursor: pointer;
  }

  .hero-enquiry-close:hover,
  .hero-enquiry-close:focus-visible {
    background: var(--coral);
    color: #fff;
  }

  .hero-enquiry-title {
    padding-right: 2rem;
  }

  .hero-enquiry-mobile {
    display: block;
    padding: 0.85rem 1rem 1rem;
    background: var(--cream);
  }

  .hero-enquiry-mobile .btn-hero-search {
    width: 100%;
  }

  body.is-package-finder-open {
    overflow: hidden;
  }
}

/* Navbar arrangement with social + quote */
.site-navbar .navbar-brand {
  margin-right: 0.75rem;
}

.site-navbar .navbar-nav {
  gap: 0.1rem;
}

@media (min-width: 992px) {
  .site-navbar .nav-link {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .btn-nav-quote {
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .navbar-social-link {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.95rem;
  }
}

.brand-mark--image {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0;
  animation: none !important;
  overflow: visible;
}

.brand-mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

