:root {
  --gold: #B79A55;
  --gold-dark: #8B6914;
  --gold-light: #D4AF37;
  --sunset: #E07B39;
  --charcoal: #2B2B2B;
  --cream: #F9F8F6;
  --soft: #F7F7F7;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Open Sans', 'Inter', sans-serif;
  --shadow-lg: 0 18px 55px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 800; letter-spacing: 0; line-height: 1.15; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1050;
}
.topbar {
  position: fixed;
  top: 0;
  z-index: 1051;
  width: 100%;
  max-height: 44px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a 0%, #2B2B2B 30%, #3d3426 50%, #B79A55 70%, #8B7355 85%, #2B2B2B 100%);
  transition: max-height .45s, opacity .45s;
}
.topbar.scrolled {
  max-height: 0;
  opacity: 0;
}
.topbar-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  animation: shimmer 4s linear infinite;
}
.topbar a { color: rgba(255,255,255,.90); transition: color .2s, background .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-inner {
  height: 44px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}
.topbar-left { gap: 1.45rem; }
.topbar-right { gap: .55rem; }
.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  line-height: 1;
}
.topbar-contact span,
.topbar-social {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(183,154,85,.20);
  line-height: 1;
  flex: 0 0 28px;
}
.topbar-contact i,
.topbar-social i {
  display: block;
  font-size: .86rem;
  line-height: 1;
}
.topbar-social:hover,
.topbar-contact:hover span {
  background: var(--gold);
  color: #1a1a1a;
}

.site-navbar {
  top: 44px;
  min-height: 96px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: top .3s, min-height .3s, background .3s;
}
.site-navbar.scrolled { top: 0; min-height: 68px; }
.site-navbar .container-fluid {
  min-height: inherit;
  display: flex;
  align-items: center;
}
.site-navbar .navbar-collapse {
  align-items: center;
}
.nav-cta-wrap {
  justify-content: flex-end;
  min-width: clamp(160px, 13vw, 215px);
  margin-left: 1rem;
}
.navbar-brand {
  width: clamp(190px, 17vw, 315px);
  min-width: clamp(190px, 17vw, 315px);
  overflow: hidden;
}
.navbar-brand img {
  width: 100%;
  height: 96px;
  display: block;
  object-fit: cover;
  object-position: center 58%;
  transition: height .35s, transform .25s;
}
.site-navbar.scrolled .navbar-brand { width: clamp(170px, 14vw, 245px); min-width: clamp(170px, 14vw, 245px); }
.site-navbar.scrolled .navbar-brand img { height: 68px; }
.navbar-brand:hover img { transform: scale(1.03); }
.site-navbar .nav-link {
  color: #996515;
  font-family: var(--font-heading);
  font-size: clamp(.62rem, .68vw, .84rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding-inline: .62rem;
  text-align: center;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active { color: var(--gold-dark); }
.site-navbar .nav-link.dropdown-toggle.show,
.site-navbar .nav-link.dropdown-toggle:focus,
.site-navbar .nav-link.dropdown-toggle:active,
.site-navbar .nav-item.dropdown.hover-open > .nav-link {
  background: transparent;
  box-shadow: none;
  color: var(--gold-dark);
}
.site-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s;
}
.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after,
.site-navbar .nav-item.dropdown.hover-open > .nav-link::after,
.site-navbar .nav-link.dropdown-toggle.show::after { transform: scaleX(1); }
.site-navbar .nav-link:focus-visible {
  outline: none;
}
.dropdown-menu {
  min-width: 320px;
  padding: 3.45rem .65rem .7rem;
  overflow: hidden;
  border: 1px solid rgba(184,134,11,.20);
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1a1a, #2B2B2B 55%, #1a1a1a);
  box-shadow: 0 25px 50px rgba(0,0,0,.40), 0 0 30px rgba(183,154,85,.15), inset 0 1px 0 rgba(255,255,255,.1);
  margin-top: .6rem;
  transform-origin: top center;
  animation: dropdownReveal .18s ease;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  animation: goldFlow 3s linear infinite;
}
.dropdown-heading {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.dropdown-heading i { font-size: .95rem; }
.dropdown-item {
  color: #fff;
  font-weight: 800;
  padding: .75rem .85rem;
  white-space: normal;
  border-radius: 14px;
  transition: background .2s, color .2s, transform .2s;
}
.premium-dropdown-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
}
.dropdown-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(183,154,85,.18);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.dropdown-item strong { display: block; color: inherit; line-height: 1.2; }
.dropdown-arrow {
  color: rgba(255,255,255,.42);
  transition: transform .2s, color .2s;
}
.dropdown-item small { display: block; color: #aaa; font-weight: 500; margin-top: .15rem; }
.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(183,154,85,.18), rgba(183,154,85,.04));
  color: var(--gold);
  transform: translateX(3px);
}
.dropdown-item:hover .dropdown-icon { background: var(--gold); color: #1a1a1a; }
.dropdown-item:hover .dropdown-arrow { color: var(--gold-light); transform: translateX(4px); }
.dropdown-footer-link {
  margin: .55rem .15rem 0;
  padding-top: .65rem;
  border-top: 1px solid rgba(255,255,255,.10);
}
.dropdown-footer-link a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .35rem .7rem;
}
.dropdown-footer-link a:hover { color: #fff; }
@keyframes dropdownReveal {
  from {
    opacity: 0;
    transform: translateY(6px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.nav-phone-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .65rem 1.2rem;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px -5px rgba(139,105,20,.5), inset 0 0 0 1px rgba(255,255,255,.1);
}
.nav-phone-btn:hover { color: #fff; transform: translateY(-2px); }

.btn-gold {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--gold-dark);
  --bs-btn-hover-border-color: var(--gold-dark);
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .9rem 1.4rem;
  text-transform: uppercase;
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: 130px;
}
.hero.small { min-height: 58vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.32) 45%, rgba(0,0,0,.72));
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  max-width: 980px;
}
.hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 1.18rem; }
.eyebrow {
  display: inline-block;
  padding: .55rem 1rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light {
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.20);
  color: var(--gold-light);
}
.eyebrow-outline {
  background: rgba(183,154,85,.10);
  border: 1px solid rgba(183,154,85,.20);
  color: var(--gold);
}
.text-gradient-gold {
  background: linear-gradient(90deg, var(--gold-light), #FFD700, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: 6rem 0; }
.section-soft { background: var(--soft); }
.section-cream { background: var(--cream); }
.section-title { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 1rem; }
.section-title p { color: #666; font-size: 1.05rem; }

.tour-card, .blog-card, .info-card, .gallery-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
  height: 100%;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.gallery-button { border: 0; padding: 0; }
.gallery-viewer-img { max-width: min(1100px, 92vw); max-height: 78vh; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.tour-card:hover, .blog-card:hover, .gallery-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-card img, .blog-card img, .gallery-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .6s; }
.tour-card:hover img, .blog-card:hover img, .gallery-card:hover img { transform: scale(1.08); }
.tour-card {
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #fcfbf8);
  box-shadow: 0 18px 44px rgba(32,24,8,.08);
}
.tour-card > a {
  height: 100%;
  display: flex !important;
  flex-direction: column;
}
.card-img-wrap { position: relative; overflow: hidden; border-radius: 32px 32px 0 0; }
.tour-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.18), transparent 42%);
  pointer-events: none;
}
.badge-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #fff; border-radius: 999px; padding: .45rem .8rem; font-weight: 800; font-size: .72rem; text-transform: uppercase; }
.floating-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; padding: .75rem 1.5rem; border-radius: 999px; font-size: .82rem; letter-spacing: .04em; }
.duration-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,.96); color: var(--charcoal); border-radius: 999px; padding: .75rem 1.2rem; font-size: .86rem; font-weight: 800; z-index: 2; box-shadow: 0 12px 28px rgba(0,0,0,.10); }
.card-body { padding: 1.5rem; }
.tour-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 2rem 2rem 1.85rem;
}
.tour-card-copy {
  display: grid;
  gap: .9rem;
}
.tour-card-title {
  margin: 0;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.2;
  color: var(--charcoal);
}
.tour-card-description {
  margin: 0;
  color: #5f6675;
  font-size: 1rem;
  line-height: 1.7;
}
.tour-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.tour-card-highlight {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7f7f7, #f2f2f2);
  color: #333;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
}
.tour-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: .65rem;
}
.tour-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 56px;
  min-width: 220px;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(183,154,85,.24);
  transition: transform .25s, box-shadow .25s;
}
.tour-card:hover .tour-card-button {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(183,154,85,.3);
}
.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  box-shadow: 0 12px 28px rgba(183,154,85,.28);
}

.split-image { min-height: 520px; object-fit: cover; width: 100%; }
.itinerary-day { border: 1px solid rgba(0,0,0,.08); box-shadow: 0 8px 26px rgba(0,0,0,.06); }
.day-number { width: 54px; height: 54px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), var(--sunset)); color: #fff; font-weight: 800; }
.booking-box { position: sticky; top: 110px; box-shadow: var(--shadow-lg); overflow: hidden; }
.booking-box-header { background: linear-gradient(135deg, var(--gold), var(--sunset)); color: #fff; padding: 1.4rem; }

.form-control, .form-select { border-radius: 0; min-height: 52px; border-color: #ddd; }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(183,154,85,.16); }

.site-footer { color: rgba(255,255,255,.72); background: linear-gradient(135deg, #1a1a1a 0%, #2B2B2B 35%, #3d3426 70%, #202020 100%); }
.footer-newsletter { border-bottom: 1px solid rgba(255,255,255,.1); padding: 4rem 0; }
.footer-newsletter h2 { color: #fff; }
.newsletter-form { display: flex; gap: .75rem; }
.newsletter-form .form-control { min-height: 62px; border-radius: 999px; color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); padding-left: 1.4rem; }
.newsletter-form .btn { border-radius: 999px; min-width: 150px; }
.footer-main { padding: 4.5rem 0 2rem; }
.footer-brand {
  display: inline-flex !important;
  align-items: center;
  gap: .9rem;
  margin: 0 0 1rem !important;
  color: #fff !important;
}
.footer-brand-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8B7355);
  box-shadow: 0 10px 28px rgba(183,154,85,.22);
  font-size: 1.75rem;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}
.footer-brand small {
  display: block;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer-tagline {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
}
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1.4rem; }
.site-footer a { display: block; color: rgba(255,255,255,.68); margin-bottom: .65rem; }
.site-footer a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-row a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; margin: 0; }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1rem;
}
.footer-legal a {
  margin: 0;
  padding: .45rem .75rem;
  border-radius: 999px;
  color: rgba(255,255,255,.55);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-legal a:hover { background: rgba(255,255,255,.06); color: var(--gold); }
.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(183,154,85,.30);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(183,154,85,.20), rgba(224,123,57,.16));
  color: rgba(255,255,255,.70);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-top-btn:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--gold), var(--sunset));
}
.tracking { letter-spacing: .18em; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25D366; color: #fff; z-index: 1040; font-size: 1.6rem; box-shadow: 0 12px 30px rgba(37,211,102,.35); }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.fade-up.in-view { opacity: 1; transform: none; }

/* Home page parity with the React staging homepage */
.home-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 650px;
  overflow: hidden;
}
.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: homeHeroZoom 8s ease-out forwards;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.50), rgba(0,0,0,.20), rgba(0,0,0,.60)),
    linear-gradient(to right, rgba(26,26,26,.30), transparent, rgba(26,26,26,.30));
}
.home-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
}
.home-hero h1 {
  max-width: 980px;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.home-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2vw, 1.16rem);
}
.home-hero-arrow {
  width: 48px;
  height: 48px;
  top: 50%;
  margin: 0 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  opacity: 1;
}
.home-hero-indicators {
  bottom: 78px;
  gap: .6rem;
  margin-bottom: 0;
}
.home-hero-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  opacity: 1;
  transition: width .3s, background .3s;
}
.home-hero-indicators .active {
  width: 32px;
  background: var(--gold);
}
.home-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  transform: translateX(-50%);
}
.home-scroll-indicator span {
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.home-scroll-indicator i {
  position: relative;
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
}
.home-scroll-indicator i::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease-in-out infinite;
}
.home-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  height: 80px;
}
.home-wave svg { width: 100%; height: 100%; display: block; }

.home-who h2,
.home-destinations h2,
.home-signature h2,
.home-testimonials h2,
.home-gallery h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-title h2 span,
.home-who h2 span {
  color: var(--gold);
}
.gold-rule {
  width: 80px;
  height: 4px;
  margin: 1.5rem 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--sunset));
}
.home-image-stack {
  position: relative;
  padding-left: 1rem;
}
.home-image-stack::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}
.home-image-stack img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.experience-card {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.experience-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}
.experience-card span {
  color: #666;
  font-weight: 700;
}
.home-check-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
.home-check-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.2rem;
  color: #444;
}
.home-check-list li::before {
  content: '\F26A';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-family: bootstrap-icons;
  font-size: 1.25rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--gold);
  font-weight: 800;
}
.link-arrow:hover { gap: .9rem; color: var(--gold-dark); }

.home-destinations {
  background: var(--soft);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.home-destination-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.home-destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.home-destination-card:hover img { transform: scale(1.1); }
.home-destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.15), transparent);
}
.home-destination-pill {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  max-width: calc(100% - 2rem);
  gap: .75rem;
  padding: .72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sunset), var(--gold));
  color: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}
.home-destination-pill strong {
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-why {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at top right, rgba(183,154,85,.16), transparent 28%),
              radial-gradient(circle at bottom left, rgba(139,105,20,.16), transparent 28%),
              linear-gradient(135deg, #1a1a1a, #2B2B2B 50%, #1F1F1F);
}
.section-title-light h2,
.section-title-light p { color: #fff; }
.section-title-light h2 span { color: var(--gold); }
.why-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .3s, background .3s;
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.10);
}
.why-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  font-size: 1.8rem;
}
.why-card h3 {
  color: #fff;
  font-size: 1.1rem;
}
.why-card p {
  color: rgba(255,255,255,.62);
  font-size: .92rem;
  margin: 0;
}
.home-why-note {
  max-width: 760px;
  margin: 3rem auto 0;
  color: rgba(255,255,255,.72);
  text-align: center;
}

.home-signature {
  background: radial-gradient(circle at top right, rgba(183,154,85,.08), transparent 25%),
              linear-gradient(to bottom, #fff, var(--cream), #fff);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.home-signature-shell,
.home-testimonials-shell,
.home-gallery-shell,
.home-travel-info-shell {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 34px;
  border: 1px solid rgba(183,154,85,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,247,241,.96)),
    radial-gradient(circle at top right, rgba(183,154,85,.10), transparent 28%);
  box-shadow: 0 24px 60px rgba(36,27,11,.08);
}
.home-signature .tour-card {
  height: 100%;
}
.btn-pill-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sunset), var(--gold));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 35px rgba(183,154,85,.28);
}
.btn-pill-gold:hover {
  color: #fff;
  transform: translateY(-2px);
}

.home-testimonials {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background:
    radial-gradient(circle at center left, rgba(183,154,85,.10), transparent 22%),
    #fff;
}
.home-testimonials-carousel {
  max-width: 920px;
  margin: 0 auto;
}
.home-testimonials-carousel .carousel-inner {
  overflow: visible;
}
.home-testimonials-carousel .carousel-item {
  padding: .75rem;
}
.testimonial-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.quote-mark {
  position: absolute;
  top: .4rem;
  right: 1.3rem;
  color: rgba(183,154,85,.16);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}
.testimonial-card p {
  position: relative;
  color: #555;
}
.testimonial-card strong {
  display: block;
  color: var(--charcoal);
}
.testimonial-card span {
  color: #888;
  font-size: .9rem;
}
.testimonial-card-slide {
  min-height: 320px;
  padding: 3rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,247,241,.98)),
    radial-gradient(circle at top right, rgba(183,154,85,.10), transparent 34%);
}
.testimonial-rating {
  font-size: 1.1rem;
  letter-spacing: .24rem;
}
.testimonial-meta {
  display: grid;
  gap: .25rem;
  margin-top: 1.5rem;
}
.home-testimonial-indicators {
  position: static;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.home-testimonial-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(183,154,85,.28);
}
.home-testimonial-indicators .active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.testimonial-card-pro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.testimonial-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(183,154,85,.18);
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
}
.testimonial-video-block {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #f8f5ee;
  border: 1px solid rgba(183,154,85,.12);
}
.testimonial-video-block video {
  width: 100%;
  display: block;
  max-height: 240px;
  background: #111;
}
.testimonial-video-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1rem;
  color: var(--gold-dark);
  font-weight: 800;
}
.testimonial-video-link i {
  font-size: 1.2rem;
}

.home-gallery {
  background: linear-gradient(to bottom, #fff, var(--soft));
}
.home-travel-info-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(183,154,85,.10), transparent 28%),
    linear-gradient(180deg, #fff, #faf7f1);
}
.home-travel-info-card {
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 38px rgba(0,0,0,.08);
}
.home-travel-info-card:hover,
.about-value-card:hover,
.about-principle-card:hover,
.premium-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(20,16,10,.10);
}
.home-travel-info-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.home-travel-info-card-body {
  padding: 1.65rem;
}
.home-travel-info-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(183,154,85,.12);
  color: var(--gold-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.home-travel-info-card h3 {
  margin-bottom: .8rem;
}
.home-travel-info-copy {
  color: #5f5f5f;
  line-height: 1.8;
}
.home-travel-info-copy h3,
.home-travel-info-copy h4,
.home-travel-info-copy strong {
  color: var(--charcoal);
}
.home-travel-info-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  color: var(--gold-dark);
  font-weight: 800;
}
.home-travel-info-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
}
.travel-info-admin-card {
  overflow: hidden;
}
.travel-info-admin-image {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.25rem;
  height: 220px;
  object-fit: cover;
  display: block;
}
.home-gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.10);
}
.home-gallery-shell .row {
  position: relative;
  z-index: 1;
}
.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.home-gallery-card:hover img { transform: scale(1.12); }
.home-gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.home-gallery-card:hover .home-gallery-hover { opacity: 1; }
.home-gallery-hover > i {
  margin-bottom: .5rem;
  font-size: 1.6rem;
}
.home-gallery-hover strong {
  font-size: .9rem;
}
.home-gallery-hover span {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
}

/* Public subpage parity patterns */
.page-shell {
  overflow: hidden;
}
.premium-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 110px;
  color: #fff;
}
.premium-hero.tall { min-height: 70vh; }
.premium-hero.compact { min-height: 50vh; }
.premium-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.premium-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.60), rgba(0,0,0,.36), rgba(0,0,0,.72));
}
.premium-hero .container {
  position: relative;
  z-index: 2;
}
.premium-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  text-shadow: 0 8px 26px rgba(0,0,0,.35);
}
.premium-hero p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
}
.hero-glow {
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(183,154,85,.22);
  filter: blur(70px);
}
.hero-glow.one { top: 10%; right: 8%; }
.hero-glow.two { bottom: 5%; left: 8%; background: rgba(224,123,57,.16); }

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-width: 130px;
  justify-content: center;
  padding: .9rem 1.25rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  background: #fff;
  color: #666;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.filter-pill.active,
.filter-pill:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.feature-strip-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.feature-strip-card i {
  color: var(--gold);
  font-size: 1.5rem;
}
.dark-cta {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a, #2B2B2B);
}
.dark-cta h2 { color: #fff; }
.dark-cta p { color: rgba(255,255,255,.68); }
.rounded-photo {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.mission-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    radial-gradient(circle at top right, rgba(200,162,76,.22), transparent 34%);
  box-shadow: 0 24px 52px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
}
.mission-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,76,.18), transparent 66%);
  pointer-events: none;
}
.about-purpose-title {
  max-width: 780px;
  margin-inline: auto;
}
.about-purpose-grid {
  align-items: stretch;
}
.mission-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.mission-card-kicker {
  display: inline-flex;
  align-items: center;
  padding: .58rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mission-card-icon.why-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(200,162,76,.24), rgba(255,255,255,.10));
  box-shadow: none;
}
.mission-card-body,
.mission-card-foot {
  position: relative;
  z-index: 1;
}
.mission-card h3 {
  margin: 0 0 .85rem;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
}
.mission-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.82;
}
.mission-card-foot {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mission-card-foot h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero-content {
  max-width: 980px;
  margin: 0 auto;
}
.about-intro-band {
  position: relative;
  z-index: 4;
  margin-top: -3.5rem;
  padding-bottom: 1.25rem;
}
.about-intro-band-shell {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(24,24,24,.96), rgba(45,45,45,.94)),
    radial-gradient(circle at top right, rgba(200,162,76,.22), transparent 36%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}
.about-intro-band-copy {
  display: grid;
  align-content: center;
  gap: .75rem;
  padding: .5rem;
}
.about-intro-band-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.about-intro-band-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.about-intro-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.about-intro-card {
  height: 100%;
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.about-intro-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold-dark);
  background: rgba(200,162,76,.18);
  font-size: 1.2rem;
}
.about-intro-card h3 {
  margin: 0 0 .45rem;
  color: #fff;
  font-size: 1rem;
}
.about-intro-card p {
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  font-size: .93rem;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.about-hero-stat {
  padding: 1.15rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,10,10,.26);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}
.about-hero-stat strong,
.gallery-hero-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 900;
}
.about-hero-stat span,
.gallery-hero-stat span {
  display: block;
  margin-top: .35rem;
  color: rgba(255,255,255,.76);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.about-story-section {
  overflow: hidden;
}
.about-story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #fbf8f1);
  border: 1px solid rgba(183,154,85,.12);
  box-shadow: 0 30px 70px rgba(0,0,0,.07);
}
.about-story-media,
.about-story-copy {
  display: grid;
  gap: 1.5rem;
}
.about-story-copy-head {
  display: grid;
  gap: .8rem;
}
.about-story-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}
.about-story-copy-grid {
  display: grid;
  gap: 1rem;
}
.about-story-stack {
  position: relative;
}
.about-story-principles {
  display: grid;
  gap: 1rem;
}
.about-principle-card {
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f9f6ef);
  border: 1px solid rgba(183,154,85,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.05);
  transition: transform .28s, box-shadow .28s;
}
.about-principle-card h3 {
  margin: 0 0 .55rem;
  font-size: 1rem;
}
.about-principle-card p {
  margin: 0;
  color: #5f6675;
  line-height: 1.65;
}
.about-story-badge {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 220px;
  display: grid;
  gap: .3rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(18,18,18,.82);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}
.about-story-badge strong {
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-story-badge span {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  line-height: 1.5;
}
.about-story-points {
  display: grid;
  gap: .9rem;
  margin-top: 1.5rem;
}
.about-story-support {
  display: grid;
  gap: 1rem;
}
.about-story-support-card {
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(183,154,85,.10), rgba(255,255,255,.92));
  border: 1px solid rgba(183,154,85,.18);
  box-shadow: 0 18px 36px rgba(0,0,0,.05);
}
.about-story-support-card ul {
  margin: .8rem 0 0;
  padding-left: 1.1rem;
  color: #5f6675;
  display: grid;
  gap: .75rem;
}
.about-story-support-card li {
  line-height: 1.7;
}
.about-story-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #faf7f1);
  border: 1px solid rgba(183,154,85,.14);
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
}
.about-story-point span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(183,154,85,.12);
  color: var(--gold-dark);
}
.about-story-point p {
  margin: 0;
  color: #5f6675;
  line-height: 1.7;
}
.about-values-section {
  background:
    radial-gradient(circle at top center, rgba(183,154,85,.10), transparent 24%),
    #fff;
}
.about-value-card {
  transition: transform .28s, box-shadow .28s;
}
.about-value-card.is-raised {
  transform: translateY(-12px);
}
.about-team-section .team-card {
  overflow: hidden;
}
.about-team-card img {
  height: 390px;
  object-fit: cover;
}
.about-team-meta {
  display: grid;
  gap: .35rem;
  margin-bottom: .9rem;
}
.mission-points {
  display: grid;
  gap: .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mission-points li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: rgba(255,255,255,.80);
}
.mission-points li span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.mission-points li em {
  font-style: normal;
  line-height: 1.65;
}
.team-card {
  overflow: hidden;
  height: 100%;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.stat-card {
  height: 100%;
  padding: 2rem;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  text-align: center;
}
.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: 2.7rem;
  line-height: 1;
}
.detail-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  overflow: hidden;
}
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.18), rgba(0,0,0,.40));
}
.detail-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4rem;
  z-index: 2;
  color: #fff;
}
.detail-hero-content h1 { color: #fff; }
.detail-meta-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.detail-meta-card i {
  color: var(--gold);
  font-size: 1.35rem;
}
.rich-content h2,
.rich-content h3 {
  margin-top: 2rem;
}
.rich-content .lead {
  color: #555;
  font-size: 1.18rem;
}
.premium-form {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}
.contact-method i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
}
.contact-form-original .form-label {
  color: var(--charcoal);
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.contact-form-original .form-label span { color: var(--gold); }
.contact-form-original .form-label small {
  color: #777;
  font-weight: 600;
}
.contact-form-original .form-control,
.contact-form-original .form-select {
  min-height: 56px;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form-original textarea.form-control { min-height: 160px; }
.contact-form-original .form-control:focus,
.contact-form-original .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .25rem rgba(183,154,85,.14);
}
.contact-success {
  margin-bottom: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--soft), #fff);
}
.contact-success i {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #e8f6ed;
  color: #198754;
  font-size: 2rem;
}
.tour-inquiry-note {
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, var(--soft), #fff);
}
.tour-inquiry-note small {
  display: block;
  color: #777;
  margin-bottom: .25rem;
}
.tour-inquiry-note strong { color: var(--charcoal); }
.eyebrow-dark {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.contact-info-stack {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--soft), rgba(255,255,255,0));
  color: inherit;
  transition: background .25s, transform .25s;
}
a.contact-info-card:hover {
  color: inherit;
  background: linear-gradient(90deg, rgba(183,154,85,.12), rgba(255,255,255,0));
  transform: translateY(-2px);
}
.contact-info-card.whatsapp { background: linear-gradient(90deg, rgba(37,211,102,.10), rgba(255,255,255,0)); }
.contact-info-card h4 {
  margin: 0 0 .25rem;
  color: var(--charcoal);
  font-size: 1rem;
}
.contact-info-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}
.contact-info-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  border-radius: 15px;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 12px 25px rgba(0,0,0,.10);
}
.contact-info-icon.gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.contact-info-icon.gold-dark { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.contact-info-icon.orange { background: linear-gradient(135deg, var(--sunset), #F09B5C); }
.contact-info-icon.green { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-info-icon.olive { background: linear-gradient(135deg, var(--olive), #8FA362); }
.contact-social-block {
  margin-bottom: 2.25rem;
}
.contact-social-block h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.contact-socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f7f7f7;
  color: #666;
  font-size: 1.15rem;
  transition: transform .2s, color .2s, background .2s;
}
.contact-socials a:hover {
  color: #fff;
  background: var(--gold);
  transform: translateY(-3px) scale(1.05);
}
.contact-map {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 310px;
  overflow: hidden;
  border-radius: 24px;
  background: #f3f3f3;
  box-shadow: var(--shadow-lg);
}
.contact-map iframe {
  position: absolute;
  inset: 0;
}
.map-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.map-label span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.map-label small {
  display: block;
  color: #777;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.map-label strong {
  display: block;
  color: var(--charcoal);
  font-size: .9rem;
}
.travel-quick-section {
  background: linear-gradient(to bottom, var(--soft), #fff);
}
.travel-tip-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.travel-tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}
.travel-tip-card h3 {
  margin: 1rem 0 .5rem;
  color: var(--charcoal);
  font-size: 1.15rem;
}
.travel-tip-card p {
  margin: 0;
  color: #666;
  font-size: .95rem;
  line-height: 1.65;
}
.contact-info-icon.gold-light { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.contact-info-icon.gold-dark { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.travel-country-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, var(--soft));
  box-shadow: var(--shadow-lg);
}
.travel-country-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.travel-country-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.travel-country-card:hover .travel-country-image img { transform: scale(1.05); }
.travel-country-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.12));
}
.travel-country-image div {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.4rem;
  z-index: 1;
}
.travel-country-image h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
}
.travel-country-overview {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.travel-country-overview p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}
.travel-accordion {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}
.travel-accordion .accordion-item {
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
}
.travel-accordion .accordion-button {
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px !important;
  background: #fff;
  color: var(--charcoal);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.travel-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #fff;
}
.travel-accordion .accordion-button span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.travel-accordion .accordion-button:not(.collapsed) span {
  background: rgba(255,255,255,.20);
}
.travel-accordion .accordion-body {
  margin-top: -.5rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: #fff;
  color: #666;
  line-height: 1.75;
}
.destination-guide-detail {
  max-width: 1120px;
  margin: 0 auto;
}
.destination-guide-hero {
  position: relative;
  padding: 9rem 0 5.5rem;
  overflow: hidden;
}
.destination-guide-hero-media,
.destination-guide-hero-media img,
.destination-guide-hero-overlay {
  position: absolute;
  inset: 0;
}
.destination-guide-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-guide-hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.44), #FDFBF7 98%);
}
.destination-guide-hero-content {
  position: relative;
  z-index: 1;
}
.destination-guide-badge {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.accent-gold .destination-guide-badge,
.accent-gold .destination-page-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.accent-sunset .destination-guide-badge,
.accent-sunset .destination-page-cta {
  background: linear-gradient(135deg, var(--sunset), #F09B5C);
}
.destination-guide-hero h1 {
  margin: 1.5rem 0 1rem;
  color: #fff;
  font-size: var(--destination-hero-title-size, clamp(2.4rem, 5vw, 4rem));
}
.destination-guide-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.84);
  font-size: 1.18rem;
}
.destination-guide-page {
  padding: 1rem 0 5rem;
  background: linear-gradient(to bottom, #FDFBF7, #fbf9f3 55%, #fff);
}
.destination-facts-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 1350px;
  margin: -2.7rem auto 4rem;
  position: relative;
  z-index: 2;
}
.destination-fact-tile {
  padding: 1.4rem 1rem 1.25rem;
  border-radius: 22px;
  text-align: center;
  color: #fff;
  box-shadow: 0 16px 34px rgba(183,154,85,.22);
  background: linear-gradient(135deg, #c1a045, #d8b43d 55%, #d7b237);
}
.destination-fact-tile i {
  display: inline-block;
  margin-bottom: .55rem;
  font-size: 2rem;
}
.destination-fact-tile span,
.destination-fact-tile strong {
  display: block;
}
.destination-fact-tile span {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.destination-fact-tile strong {
  margin-top: .25rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.destination-guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1.2rem 0 0;
}
.destination-guide-intro-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.destination-guide-intro-copy .lead {
  color: #5f5f5f;
  margin-bottom: 1.5rem;
}
.destination-guide-intro-visual {
  display: grid;
  gap: 1rem;
  position: relative;
  padding: 1rem 0 0 1rem;
}
.destination-guide-shell {
  display: grid;
  gap: 2rem;
}
.destination-guide-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 2rem;
  align-items: center;
}
.destination-guide-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.destination-guide-copy .lead {
  color: #5f5f5f;
  margin-bottom: 1.5rem;
}
.destination-highlight-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.5rem;
}
.destination-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.destination-guide-visual {
  display: grid;
  gap: 1rem;
}
.destination-guide-main-image,
.destination-guide-secondary-image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 40px rgba(32,24,8,.14);
}
.destination-guide-main-image img,
.destination-guide-secondary-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.destination-guide-main-image {
  min-height: 420px;
  position: relative;
  z-index: 2;
}
.destination-guide-secondary-image {
  max-width: 74%;
  min-height: 220px;
  margin-left: auto;
  position: relative;
  margin-top: -5.5rem;
  z-index: 3;
}
.destination-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.destination-fact-pill {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  border: 1px solid rgba(183,154,85,.16);
}
.destination-fact-pill i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(183,154,85,.14);
  color: var(--gold-dark);
  font-size: 1.2rem;
}
.destination-fact-pill small {
  display: block;
  color: #8a8a8a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.destination-fact-pill strong {
  color: var(--charcoal);
}
.destination-overview-pro {
  padding: 1.75rem 1.9rem;
  border-radius: 22px;
  background: #f9f8f4;
}
.destination-overview-pro p {
  margin: 0;
  font-size: 1.05rem;
}
.destination-guide-detail .travel-country-image {
  height: 360px;
}
.destination-guide-accordion {
  grid-template-columns: 1fr;
}
.destination-guide-gallery-pro {
  grid-template-columns: repeat(3, 1fr);
}
.destination-guide-gallery-pro img {
  min-height: 220px;
}
.destination-related-tours {
  margin-top: 1.5rem;
}
.destination-info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.destination-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.9rem 1.85rem;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 10px 24px rgba(32,24,8,.06), 0 18px 40px rgba(32,24,8,.05);
}
.destination-info-card-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex: 0 0 60px;
  border-radius: 18px;
  background: #f4efe3;
  color: var(--gold);
  font-size: 1.6rem;
  box-shadow: inset 0 0 0 1px rgba(183,154,85,.08);
}
.destination-info-card h3,
.destination-arrival-block h3,
.destination-attraction-tile h3,
.destination-spotlight h2 {
  margin-bottom: .7rem;
}
.destination-info-card h3 {
  font-size: 1.1rem;
}
.destination-info-card-text {
  color: #657083;
  font-size: .97rem;
  line-height: 1.7;
}
.destination-inline-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: #a9852e;
  font-weight: 800;
}
.destination-arrival-panel {
  margin-bottom: 3.5rem;
  padding: 2.2rem 2.6rem;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 14px 28px rgba(32,24,8,.06), 0 24px 54px rgba(32,24,8,.08);
}
.destination-faq-section {
  margin-bottom: 3.5rem;
  padding: 2rem 2.2rem 2.2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(183,154,85,.10), transparent 30%),
    linear-gradient(180deg, #fff, #fbf8f2 100%);
  border: 1px solid rgba(183,154,85,.12);
  box-shadow: 0 18px 42px rgba(32,24,8,.08);
}
.destination-faq-accordion {
  display: grid;
  gap: 1.05rem;
}
.destination-faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,247,242,.98));
  box-shadow: 0 14px 30px rgba(32,24,8,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.destination-faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(183,154,85,.28);
  box-shadow: 0 18px 36px rgba(183,154,85,.16);
  transform: translateY(-2px);
}
.destination-faq-accordion .accordion-button {
  padding: 1.4rem 1.55rem;
  background: transparent;
  color: var(--charcoal);
  font-size: 1.04rem;
  font-weight: 800;
  box-shadow: none;
  gap: 1rem;
}
.destination-faq-accordion .accordion-button span {
  display: block;
  padding-right: 1rem;
  line-height: 1.5;
}
.destination-faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(180deg, rgba(183,154,85,.10), rgba(255,255,255,.7));
  color: var(--gold-dark);
}
.destination-faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.destination-faq-accordion .accordion-button::after {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background-position: center;
  background-color: rgba(183,154,85,.12);
  transition: transform .25s ease, background-color .25s ease;
}
.destination-faq-accordion .accordion-button:not(.collapsed)::after {
  background-color: rgba(183,154,85,.22);
}
.destination-faq-accordion .accordion-body {
  padding: 0 1.55rem 1.55rem;
  color: #647082;
  line-height: 1.8;
}
.destination-faq-accordion .accordion-body::before {
  content: '';
  display: block;
  width: 92px;
  height: 3px;
  margin: .2rem 0 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(183,154,85,0));
}
.destination-faq-accordion .accordion-body strong,
.destination-faq-accordion .accordion-body b {
  color: var(--charcoal);
}
.destination-faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}
.destination-gallery-section {
  margin-bottom: 3.5rem;
}
.destination-section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.destination-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
}
.destination-heading-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f4efe3;
  color: var(--gold);
  font-size: 1.7rem;
}
.destination-section-heading-dark .destination-heading-icon {
  color: var(--gold-light);
}
.destination-arrival-block {
  height: 100%;
  padding: .2rem 0;
  background: transparent;
}
.destination-arrival-panel .col-md-6 + .col-md-6 .destination-arrival-block {
  padding-left: 1rem;
}
.destination-arrival-eyebrow {
  display: inline-block;
  margin-bottom: .6rem;
  color: #a08547;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.destination-arrival-block p {
  color: #657083;
  font-size: 1rem;
  line-height: 1.65;
}
.destination-arrival-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}
.destination-arrival-block li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: #5e6777;
  font-size: .98rem;
}
.destination-arrival-block li i {
  color: var(--gold);
}
.destination-attractions-panel {
  margin-bottom: 3.5rem;
  padding: 2rem 2.45rem 2.55rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #262626, #1d1d1d);
  color: #fff;
  box-shadow: 0 20px 46px rgba(0,0,0,.16);
}
.destination-attractions-panel h2 {
  color: #fff;
}
.destination-attraction-tile {
  height: 100%;
  padding: 1.2rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.09));
}
.destination-attraction-tile p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: .95rem;
  line-height: 1.55;
}
.destination-attractions-panel.accent-gold .destination-attraction-tile h3,
.destination-attractions-panel.accent-gold .destination-heading-icon {
  color: var(--gold-light);
}
.destination-attractions-panel.accent-sunset .destination-attraction-tile h3,
.destination-attractions-panel.accent-sunset .destination-heading-icon {
  color: #F09B5C;
}
.destination-spotlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,.06);
}
.destination-spotlight.accent-gold {
  background: linear-gradient(135deg, rgba(183,154,85,.10), rgba(212,175,55,.08));
}
.destination-spotlight.accent-sunset {
  background: linear-gradient(135deg, rgba(224,123,57,.12), rgba(240,155,92,.10));
}
.destination-spotlight-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  border-radius: 18px;
  color: #fff;
  font-size: 1.4rem;
}
.destination-spotlight.accent-gold .destination-spotlight-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.destination-spotlight.accent-sunset .destination-spotlight-icon {
  background: linear-gradient(135deg, var(--sunset), #F09B5C);
}
.destination-spotlight p {
  margin: 0;
  color: #666;
}
.destination-page-cta {
  padding: 4.4rem 0 4.7rem;
  color: #fff;
  background: linear-gradient(90deg, #c7a957, #d9b548 45%, #e3bf39 100%);
}
.destination-page-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
}
.destination-page-cta p {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
}
.btn-light-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 60px;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  background: #fff;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(255,255,255,.16);
}
.destination-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 1rem 1.8rem;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.destination-arrival-card,
.destination-attraction-card,
.destination-cta-card,
.destination-spotlight-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}
.destination-guide-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
}
.destination-guide-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 14px 32px rgba(32,24,8,.12);
}
.gallery-explorer {
  background: radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 28%),
              linear-gradient(to bottom, var(--soft), #fff);
}
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-tabs a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.gallery-tabs a.active.photos {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #fff;
}
.gallery-tabs a.active.videos {
  background: linear-gradient(90deg, var(--sunset), #F09B5C);
  color: #fff;
}
.gallery-count {
  text-align: center;
  color: #777;
  margin-bottom: 2rem;
}
.gallery-count strong {
  color: var(--gold);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-masonry-item {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #111;
  text-align: left;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.gallery-masonry-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  transition: transform .55s, opacity .3s;
}
.gallery-masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), transparent 55%);
  opacity: .78;
}
.gallery-masonry-item:hover img {
  transform: scale(1.08);
  opacity: .92;
}
.gallery-masonry-item > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.gallery-masonry-item > div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
}
.gallery-masonry-item strong,
.gallery-masonry-item small {
  display: block;
}
.gallery-masonry-item small {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.professional-video-card {
  min-height: 340px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}
.professional-video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent 58%);
}
.professional-video-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .55s;
}
.professional-video-card:hover img {
  transform: scale(1.06);
}
.professional-video-card .p-4,
.professional-video-card .play-button {
  position: absolute;
  z-index: 2;
}
.gallery-empty {
  padding: 5rem 1rem;
  text-align: center;
  color: #777;
}
.gallery-empty i {
  display: block;
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 4rem;
}
.category-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.category-hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.destination-fact-card,
.destination-link-card,
.destination-section-card {
  padding: 1rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}
.destination-tour-choice {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}
.destination-tour-choice input {
  margin-top: .25rem;
  accent-color: var(--gold);
}
.destination-tour-choice strong {
  display: block;
  color: var(--charcoal);
}
.destination-tour-choice small {
  color: #777;
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.video-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: .8;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  transform: translate(-50%, -50%);
}
.blog-featured {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.blog-shell-head {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}
.blog-shell-copy {
  max-width: 780px;
  margin: 0 auto;
}
.blog-shell-copy h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.blog-filter-shell {
  padding: 1rem 1.15rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f8f4ed);
  border: 1px solid rgba(183,154,85,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}
.blog-featured-meta,
.premium-blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-featured-meta {
  margin: .5rem 0 1.4rem;
  color: #6a6f79;
  font-size: .92rem;
}
.blog-featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.premium-blog-card {
  border-radius: 28px;
}
.premium-blog-card .card-body {
  display: grid;
  gap: .95rem;
}
.premium-blog-card-foot {
  padding-top: .45rem;
  border-top: 1px solid rgba(183,154,85,.14);
}
.premium-blog-card-foot span {
  color: #6a6f79;
  font-size: .88rem;
}
.blog-featured img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.blog-cta {
  padding: 4rem 0;
  color: #fff;
  background: linear-gradient(90deg, #1a1a1a, #2B2B2B);
}
.blog-cta h2 { color: #fff; }
.premium-hero-support {
  max-width: 780px;
  margin: 1.35rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.84);
  backdrop-filter: blur(10px);
}
.gallery-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 2rem auto 0;
}
.gallery-hero-stat {
  padding: 1rem 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,10,10,.24);
  backdrop-filter: blur(10px);
}
.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,242,233,.95));
  border: 1px solid rgba(183,154,85,.14);
  box-shadow: 0 18px 34px rgba(0,0,0,.05);
}
.gallery-toolbar .gallery-count {
  margin: 0;
}
.premium-gallery-grid .gallery-masonry-item {
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}
.premium-gallery-grid .gallery-masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}


@keyframes homeHeroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}
@keyframes shimmer {
  from { transform: translateX(-200%); }
  to { transform: translateX(200%); }
}
@keyframes goldFlow {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

.admin-shell {
  min-height: 100vh;
  background: #f4f1ea;
}
.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr);
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: linear-gradient(180deg, #141414, #25211b 55%, #171717);
  color: #fff;
  box-shadow: 16px 0 48px rgba(0,0,0,.18);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .5rem .25rem 1.25rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-brand img {
  width: 74px;
  height: 48px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 10px;
}
.admin-nav {
  display: grid;
  gap: .35rem;
}
.admin-nav a,
.admin-sidebar-footer a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .82rem .95rem;
  border-radius: 14px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  transition: background .2s, color .2s, transform .2s;
}
.admin-nav a:hover,
.admin-nav a.active,
.admin-sidebar-footer a:hover {
  background: rgba(183,154,85,.18);
  color: #fff;
  transform: translateX(2px);
}
.admin-nav a.active {
  box-shadow: inset 3px 0 0 var(--gold);
}
.admin-sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.10);
}
.admin-main {
  min-width: 0;
}
.admin-topbar {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.admin-topbar h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.admin-kicker {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.admin-user {
  min-width: 180px;
  padding: .75rem 1rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  background: #fff;
  text-align: right;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.admin-user span,
.admin-user small {
  display: block;
}
.admin-user span { font-weight: 800; color: var(--charcoal); }
.admin-user small { color: #777; text-transform: capitalize; }
.admin-content {
  padding: 2rem;
}
.admin-page-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.admin-page-head h2 {
  margin: 0;
  font-size: 1.7rem;
}
.admin-page-head p {
  margin: .25rem 0 0;
  color: #777;
}
.admin-card {
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(0,0,0,.08);
}
.admin-section-builder {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,244,235,.96));
  border: 1px solid rgba(183,154,85,.18);
  box-shadow: 0 18px 40px rgba(27,22,14,.06);
}
.admin-section-builder-head {
  margin-bottom: 1rem;
}
.admin-section-builder-head h3 {
  margin: 0 0 .35rem;
  font-size: 1.15rem;
}
.admin-section-builder-head p {
  margin: 0;
  color: #706a60;
}
.admin-inline-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.04);
}
.admin-inline-card h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.admin-repeater-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-repeater-head h4 {
  margin: 0 0 .25rem;
  font-size: 1rem;
}
.admin-repeater-head p {
  margin: 0;
  color: #706a60;
}
.admin-repeater-list {
  display: grid;
  gap: 1rem;
}
.admin-repeater-card {
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 24px rgba(0,0,0,.04);
}
.admin-repeater-grid {
  display: grid;
  gap: .9rem;
}
.admin-repeater-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-repeater-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin-image-preview-frame {
  min-height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f3ec;
  border: 1px dashed rgba(183,154,85,.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-image-preview-frame img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}
.admin-advanced-json {
  border: 1px solid rgba(183,154,85,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  padding: 1rem 1rem .5rem;
}
.admin-advanced-json summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--charcoal);
}
.admin-form .form-label {
  color: var(--charcoal);
  font-weight: 800;
}
.admin-form .form-control,
.admin-form .form-select,
.admin-filter .form-select {
  min-height: 48px;
  border-radius: 12px;
}
.admin-form textarea.code-field {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .88rem;
}
.admin-table {
  margin: 0;
}
.admin-table thead th {
  color: #777;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-table tbody td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.admin-badge {
  display: inline-flex;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(183,154,85,.14);
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 800;
}
.admin-filter {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.admin-filter label {
  margin: 0;
  white-space: nowrap;
  font-weight: 800;
}
.tour-admin-help {
  padding: 1rem;
  border: 1px solid rgba(183,154,85,.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(183,154,85,.10), #fff);
}
.tour-admin-help h3 {
  margin: 0 0 .35rem;
  font-size: 1.1rem;
}
.tour-admin-help p {
  color: #666;
}
.destination-admin-steps {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.destination-admin-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(183,154,85,.12);
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tour-admin-help pre {
  max-height: 360px;
  overflow: auto;
  padding: 1rem;
  border-radius: 14px;
  background: #171717;
  color: #f7f7f7;
  font-size: .82rem;
}
.tour-editor-grid {
  display: grid;
  gap: 1.25rem;
}
.tour-editor-section {
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #fbfaf7);
}
.tour-editor-section h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--charcoal);
  font-size: 1.15rem;
}
.tour-editor-section h3::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(183,154,85,.14);
}
.admin-image-preview {
  width: min(100%, 360px);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f7f7f7;
}
.admin-image-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: .7rem;
}
.admin-image-grid img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
}
.destination-media-section .form-control[type="file"] {
  min-height: 56px;
}
.destination-image-builder {
  display: grid;
  gap: 1rem;
}
.destination-image-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,247,247,.96));
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}
.destination-image-preview-wrap {
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 18px;
  background: #efefef;
}
.destination-image-preview-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.destination-image-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: .45rem;
  color: #999;
  text-align: center;
}
.destination-image-placeholder i {
  font-size: 2rem;
  color: var(--gold);
}
.destination-image-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(183,154,85,.24);
}
.dashboard-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #fbfaf7);
  box-shadow: 0 16px 38px rgba(0,0,0,.07);
}
.dashboard-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: #fff;
}
.dashboard-card strong {
  display: block;
  font-size: 2.4rem;
  color: var(--charcoal);
}
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(0,0,0,.72), rgba(43,43,43,.62)),
    url('/assets/images/home/hero-desert.jpg') center/cover;
}
.admin-login-card {
  width: min(100%, 480px);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}
.admin-login-card img {
  width: 210px;
  height: 92px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 14px;
}
.admin-login-card h1 {
  margin-top: 1.5rem;
  font-size: 2rem;
}
.cms-section:nth-of-type(even) {
  background: var(--soft);
}
.cms-section-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.cms-content-block {
  max-width: 900px;
}
.cms-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
}
.cms-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.cms-cta {
  padding: 3rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a1a1a, #2B2B2B);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cms-cta p,
.cms-cta .rich-content {
  color: rgba(255,255,255,.72);
}
.cms-faq {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.cms-faq .accordion-item {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.cms-faq .accordion-button {
  color: var(--charcoal);
  font-weight: 800;
  box-shadow: none;
}
.cms-faq .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.tour-package-hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #111;
}
.tour-package-hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-package-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.25) 45%, rgba(0,0,0,.40));
}
.tour-package-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  z-index: 3;
  color: #fff;
}
.tour-package-hero-content h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}
.tour-package-hero-content p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
}
.tour-type-pill,
.tour-hero-meta span,
.tour-back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
}
.tour-type-pill {
  margin-bottom: 1rem;
  padding: .45rem .95rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.25rem;
}
.tour-hero-meta span {
  padding: .65rem 1rem;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
}
.tour-hero-meta i { color: var(--gold); }
.tour-back-link {
  position: absolute;
  top: 150px;
  left: clamp(1rem, 4vw, 3rem);
  z-index: 4;
  padding: .55rem .95rem;
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(12px);
}
.tour-back-link:hover { color: var(--gold-light); background: rgba(255,255,255,.20); }
.tour-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(12px);
}
.tour-hero-arrow.prev { left: 1rem; }
.tour-hero-arrow.next { right: 1rem; }
.tour-thumb-strip {
  padding: 1rem 0;
  background: #1A1A1A;
}
.tour-thumbs {
  display: flex;
  gap: .7rem;
  overflow-x: auto;
  padding-bottom: .2rem;
}
.tour-thumbs button {
  width: 98px;
  height: 66px;
  flex: 0 0 98px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  opacity: .62;
  transition: opacity .2s, transform .2s, border-color .2s;
}
.tour-thumbs button.active,
.tour-thumbs button:hover {
  border-color: var(--gold);
  opacity: 1;
  transform: scale(1.03);
}
.tour-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-detail-body {
  background: #f7f7f7;
}
.tour-detail-panel {
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
}
.tour-detail-panel h2,
.tour-detail-panel h3 {
  margin: 0 0 1.3rem;
  color: var(--charcoal);
}
.tour-builder-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tour-builder-head h3,
.tour-builder-head h4 {
  margin: 0;
}
.tour-builder-head p {
  margin: .35rem 0 0;
  color: #777;
}
.tour-list-builder,
.tour-note-builder,
.tour-itinerary-builder {
  display: grid;
  gap: 1rem;
}
.tour-list-item,
.tour-note-card,
.tour-day-card,
.tour-activity-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}
.tour-list-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  padding: .75rem;
}
.tour-list-item > i {
  color: rgba(183,154,85,.6);
}
.tour-note-card,
.tour-day-card,
.tour-activity-card {
  padding: 1rem;
}
.tour-builder-image-preview {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f7f7f7;
}
.tour-builder-image-preview img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}
.tour-builder-image-preview.compact img {
  max-height: 180px;
}
.tour-note-card-head,
.tour-day-card-head,
.tour-activity-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tour-day-card-head strong,
.tour-note-card-head strong,
.tour-activity-head strong {
  display: block;
  color: var(--charcoal);
}
.tour-day-card-head small {
  color: #777;
}
.tour-activity-builder {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.tour-meals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: #fbfaf7;
}
.tour-meals strong {
  width: 100%;
  color: var(--charcoal);
}
.tour-meals label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #666;
  font-weight: 600;
}
.tour-meals input {
  accent-color: var(--gold);
}
.tour-day-media {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin: 1.2rem 0 1.4rem;
}
.tour-day-image {
  overflow: hidden;
  border-radius: 18px;
  min-height: 160px;
  max-width: 360px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.tour-day-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.tour-gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.tour-day-side {
  display: grid;
  gap: .9rem;
}
.tour-day-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: rgba(183,154,85,.12);
  color: var(--gold-dark);
  font-weight: 800;
}
.tour-day-link:hover {
  background: rgba(183,154,85,.18);
  color: var(--gold-dark);
}
.day-activity-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.day-activity-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  padding: .95rem;
  border-radius: 16px;
  background: #fffaf0;
  border: 1px solid rgba(183,154,85,.12);
}
.day-activity-card img {
  width: 108px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
}
.builder-drag-handle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .8rem;
  color: #8d7a4d;
  font-size: .82rem;
  font-weight: 700;
  cursor: grab;
}
[draggable="true"].is-dragging {
  opacity: .55;
}
.day-activity-content strong {
  display: block;
  color: var(--charcoal);
}
.day-activity-content small {
  color: var(--gold-dark);
  font-weight: 700;
}
.day-activity-content p {
  margin: .45rem 0 0;
  color: #666;
}
.tour-highlight {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  height: 100%;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(90deg, #f7f7f7, transparent);
  color: var(--charcoal);
  font-weight: 700;
}
.tour-highlight i { color: var(--gold); }
.tour-itinerary {
  display: grid;
  gap: 1rem;
}
.tour-itinerary .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.tour-itinerary .accordion-button {
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  color: var(--charcoal);
  box-shadow: none;
}
.tour-itinerary .accordion-button small {
  display: block;
  margin-top: .25rem;
  color: #777;
  font-size: .82rem;
}
.tour-itinerary .accordion-button small i { margin-right: .3rem; }
.tour-itinerary .accordion-body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.tour-itinerary .day-number {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
}
.itinerary-chip {
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(183,154,85,.12);
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 700;
}
.day-timeline {
  display: grid;
  gap: .75rem;
  margin: 1rem 0 1.4rem 1rem;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(183,154,85,.28);
}
.day-timeline div {
  position: relative;
  display: flex;
  gap: 1rem;
}
.day-timeline div::before {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: .45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.day-timeline strong {
  width: 62px;
  flex: 0 0 62px;
  color: var(--gold-dark);
}
.meal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: #f7f7f7;
}
.meal-row span {
  color: #aaa;
}
.meal-row span.active {
  color: var(--gold-dark);
  font-weight: 700;
}
.tour-check-list {
  display: grid;
  gap: .8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.tour-check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #666;
}
.tour-check-list li::before {
  position: absolute;
  left: 0;
  font-family: bootstrap-icons;
  font-weight: normal;
}
.tour-check-list.included li::before { content: "\f26e"; color: #198754; }
.tour-check-list.excluded li::before { content: "\f623"; color: #dc3545; }
.tour-info-side {
  border-left: 4px solid var(--gold);
}
.tour-info-side.orange {
  border-left-color: var(--sunset);
}
.tour-info-side > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(183,154,85,.14);
  color: var(--gold);
  font-size: 1.5rem;
}
.tour-info-side.orange > span {
  background: rgba(224,123,57,.14);
  color: var(--sunset);
}
.tour-notes-panel {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid rgba(183,154,85,.20);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff9e6, #fffbf0);
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
}
.tour-notes-panel > .d-flex > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: #fff;
  font-size: 1.4rem;
}
.tour-notes-panel h3,
.tour-notes-panel p { margin: 0; }
.tour-notes-panel p { color: #777; }
.tour-note {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  height: 100%;
  padding: .9rem;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: #555;
}
.tour-note i {
  color: var(--gold);
}
.tour-note-content {
  flex: 1;
}
.tour-note-content strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--charcoal);
}
.tour-note-content p {
  margin: 0;
}
.tour-note-content .btn {
  margin-top: .8rem;
}
.tour-booking-box {
  border-radius: 24px;
}
.tour-booking-box .btn {
  border-radius: 14px;
  min-height: 52px;
  font-weight: 800;
}
.quick-help {
  padding: 1.25rem;
  border-radius: 18px;
  background: #f7f7f7;
}
.quick-help h4 {
  margin-bottom: 1rem;
}
.quick-help a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #666;
  margin-top: .7rem;
}
.quick-help a:hover { color: var(--gold); }
.tour-detail-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a1a, #2B2B2B, #1F1F1F);
  color: #fff;
}
.tour-detail-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: 10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(183,154,85,.12);
  filter: blur(60px);
}
.tour-detail-cta .container {
  position: relative;
  z-index: 1;
}
.tour-detail-cta h2 {
  color: #fff;
}
.tour-detail-cta p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.72);
}

.maintenance-body {
  margin: 0;
  min-height: 100vh;
  background: #191919;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
.maintenance-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem) 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(183,154,85,.10), transparent 34%),
    linear-gradient(135deg, #202020, #151515 58%, #1d1d1b);
}
.maintenance-ring,
.maintenance-glow {
  position: absolute;
  pointer-events: none;
}
.maintenance-ring {
  width: min(102vw, 1080px);
  aspect-ratio: 1;
  border: 2px solid rgba(183,154,85,.08);
  border-radius: 50%;
  animation: maintenanceDrift 12s ease-in-out infinite;
}
.ring-one { top: -18%; left: -18%; }
.ring-two { right: -28%; bottom: -42%; animation-delay: -5s; }
.maintenance-glow {
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(183,154,85,.10);
  filter: blur(70px);
  animation: maintenancePulse 5s ease-in-out infinite;
}
.glow-one { top: 12%; left: 18%; }
.glow-two { right: 14%; bottom: 16%; animation-delay: -2s; }
.maintenance-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  text-align: center;
}
.maintenance-brand {
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.maintenance-brand > span,
.mini-brand > span {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  background: linear-gradient(135deg, #cfb458, #b79a35);
  color: #fff;
  font: 800 2.75rem/1 'Montserrat', sans-serif;
  box-shadow: 0 24px 70px rgba(183,154,85,.25);
}
.maintenance-brand strong,
.mini-brand strong {
  display: block;
  font: 800 clamp(2rem, 4vw, 3rem)/1 'Montserrat', sans-serif;
  letter-spacing: .08em;
}
.maintenance-brand small,
.mini-brand small {
  display: block;
  margin-top: .75rem;
  color: #c7a957;
  font-weight: 700;
  letter-spacing: .42em;
}
.maintenance-rule,
.mini-rule {
  display: block;
  width: 130px;
  height: 2px;
  margin: 0 auto clamp(3rem, 6vw, 4.6rem);
  background: linear-gradient(90deg, transparent, #c7a957, transparent);
}
.maintenance-panel h1 {
  margin: 0;
  color: #fff;
  font: 800 clamp(3.2rem, 8vw, 6rem)/1.03 'Montserrat', sans-serif;
  letter-spacing: 0;
}
.maintenance-panel p {
  max-width: 980px;
  margin: 2rem auto 0;
  color: rgba(255,255,255,.64);
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1.6;
}
.maintenance-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  margin: clamp(3rem, 6vw, 4.8rem) 0;
}
.maintenance-loader i {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #d7b23e;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.maintenance-loader i:nth-child(1) { background: #957e35; }
.maintenance-loader i:nth-child(2) { background: #c4a13d; animation-delay: .15s; }
.maintenance-loader i:nth-child(3) { animation-delay: .3s; }
.maintenance-panel h2 {
  margin-bottom: 2rem;
  color: #c7a957;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .42em;
}
.maintenance-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .95fr) minmax(0, .62fr);
  gap: 1.5rem;
}
.maintenance-contact-grid a {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  border: 2px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.80);
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.maintenance-contact-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(199,169,87,.55);
  background: rgba(199,169,87,.10);
  color: #fff;
}
.maintenance-contact-grid i {
  color: #d7b23e;
  font-size: 1.3rem;
}
.maintenance-contact-grid .bi-whatsapp { color: #25d366; }
.maintenance-panel footer {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  color: rgba(255,255,255,.22);
  font-size: 1.05rem;
}
.maintenance-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(25,135,84,.12), rgba(25,135,84,.04));
  border: 1px solid rgba(25,135,84,.2);
}
.maintenance-status.is-active {
  background: linear-gradient(135deg, rgba(183,154,85,.20), rgba(183,154,85,.06));
  border-color: rgba(183,154,85,.35);
}
.maintenance-status span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  color: var(--gold-dark);
  font-size: 1.5rem;
}
.maintenance-status strong {
  display: block;
  color: var(--dark);
}
.maintenance-status p {
  margin: .2rem 0 0;
  color: #777;
}
.maintenance-switch {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}
.maintenance-switch input {
  position: absolute;
  opacity: 0;
}
.maintenance-switch > span {
  position: relative;
  width: 74px;
  height: 40px;
  border-radius: 999px;
  background: #d8d8d8;
  transition: background .25s ease;
}
.maintenance-switch > span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: transform .25s ease;
}
.maintenance-switch input:checked + span {
  background: linear-gradient(135deg, #cfb458, #a9862d);
}
.maintenance-switch input:checked + span::after {
  transform: translateX(34px);
}
.maintenance-switch strong {
  display: block;
  color: var(--dark);
}
.maintenance-switch small {
  color: #777;
}
.maintenance-preview-card {
  overflow: hidden;
  background: #191919;
}
.mini-maintenance {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  border-radius: 24px;
}
.mini-ring {
  position: absolute;
  width: 700px;
  aspect-ratio: 1;
  border: 1px solid rgba(183,154,85,.12);
  border-radius: 50%;
}
.mini-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.mini-brand > span {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  font-size: 2rem;
}
.mini-brand strong { font-size: 1.7rem; }
.mini-brand small { font-size: .75rem; letter-spacing: .28em; }
.mini-rule {
  width: 90px;
  margin: 1.4rem auto 1.2rem;
}
.mini-maintenance h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font: 800 clamp(2rem, 4vw, 3.4rem)/1 'Montserrat', sans-serif;
}
.mini-maintenance p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: rgba(255,255,255,.62);
  font-size: 1.1rem;
}
.mini-contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}
.mini-contact span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: rgba(255,255,255,.76);
}
.mini-contact i { color: #d7b23e; }
@keyframes maintenanceDrift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.03); }
}
@keyframes maintenancePulse {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: .85; transform: scale(1.1); }
}
@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .7; }
  40% { transform: translateY(-10px); opacity: 1; }
}

@media (max-width: 1199.98px) {
  .admin-app {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
  }
  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-sidebar-footer {
    display: flex;
    gap: .5rem;
  }
  .admin-content,
  .admin-topbar {
    padding: 1rem;
  }
  .admin-page-head,
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-repeater-head {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-repeater-grid-2,
  .admin-repeater-grid-3 {
    grid-template-columns: 1fr;
  }
  .admin-user {
    width: 100%;
    text-align: left;
  }
  .topbar { display: none !important; }
  .site-navbar {
    top: 0;
    min-height: 76px;
  }
  .navbar-brand {
    width: 185px;
    min-width: 185px;
  }
  .navbar-brand img,
  .site-navbar.scrolled .navbar-brand img { height: 66px; }
  .navbar-toggler {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(183,154,85,.30);
    border-radius: 14px;
    background: rgba(183,154,85,.08);
    box-shadow: none !important;
  }
  .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }
  .navbar-collapse {
    position: fixed;
    inset: 76px 0 0;
    background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    max-height: none;
    overflow-y: auto;
  }
  .navbar-nav {
    align-items: stretch !important;
    gap: .55rem !important;
  }
  .site-navbar .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: .9rem 1rem;
    border: 1px solid rgba(183,154,85,.16);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    color: #2B2B2B;
    font-size: .92rem;
  }
  .site-navbar .nav-link::after { display: none; }
  .site-navbar .nav-link.active,
  .site-navbar .nav-link:hover {
    color: var(--gold-dark);
    background: linear-gradient(135deg, rgba(183,154,85,.14), #fff);
  }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    min-width: 0;
    margin: .45rem 0 .25rem;
    padding: 3.25rem .6rem .65rem;
    border-radius: 18px;
  }
  .premium-dropdown-item {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: .65rem;
  }
  .dropdown-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
  .nav-phone-btn {
    width: 100%;
    min-height: 52px;
    margin-top: .4rem;
  }
  .nav-phone-btn-mobile {
    width: auto;
    min-height: 46px;
    margin-top: 0;
    padding: .6rem .95rem;
    font-size: .72rem;
  }
  .hero { padding-top: 96px; }
  .tour-package-hero {
    min-height: 520px;
  }
  .tour-package-hero-content {
    padding-inline: 1.25rem;
  }
  .destination-guide-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .destination-guide-intro-visual {
    order: -1;
    padding: 0;
  }
  .destination-guide-main-image {
    min-height: 340px;
  }
  .destination-guide-secondary-image {
    max-width: 62%;
    min-height: 180px;
    margin-top: -4rem;
  }
  .destination-facts-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -2rem;
  }
  .destination-guide-gallery,
  .destination-guide-gallery-pro {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-image-stack img,
  .split-image {
    min-height: 420px;
    height: 420px;
  }
  .booking-box,
  .tour-booking-box {
    position: static !important;
  }
}
@media (max-width: 991.98px) {
  .section {
    padding: 4.5rem 0;
  }
  .hero,
  .premium-hero,
  .premium-hero.tall,
  .premium-hero.compact,
  .destination-guide-hero {
    min-height: auto;
  }
  .hero h1,
  .premium-hero h1,
  .destination-guide-hero h1,
  .tour-package-hero h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
  }
  .hero p,
  .premium-hero p,
  .destination-guide-hero p,
  .tour-package-hero p {
    font-size: 1rem;
  }
  .home-hero {
    height: auto;
    min-height: 560px;
    max-height: none;
  }
  .home-hero-content {
    padding-top: 110px;
    padding-bottom: 80px;
  }
  .home-hero-actions .btn,
  .destination-guide-actions .btn,
  .destination-cta-actions .btn,
  .dark-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .destination-info-card-grid,
  .destination-facts-strip,
  .destination-guide-gallery,
  .destination-guide-gallery-pro {
    grid-template-columns: 1fr;
  }
  .destination-arrival-panel,
  .destination-attractions-panel,
  .destination-spotlight,
  .tour-notes-panel {
    padding: 1.5rem;
  }
  .tour-package-hero {
    min-height: 460px;
  }
  .tour-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .day-timeline div {
    flex-direction: column;
    gap: .35rem;
  }
  .day-timeline strong {
    width: auto;
    flex: 0 0 auto;
  }
  .contact-map iframe,
  .contact-map {
    min-height: 320px;
  }
  .blog-featured img {
    height: 320px;
    object-fit: cover;
  }
  .about-hero-stats,
  .gallery-hero-stats,
  .about-story-shell {
    grid-template-columns: 1fr 1fr;
  }
  .about-intro-band {
    margin-top: -2rem;
  }
  .about-intro-band-shell,
  .about-story-shell {
    grid-template-columns: 1fr;
  }
  .about-intro-band-grid {
    grid-template-columns: 1fr;
  }
  .about-story-badge {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .section { padding: 4rem 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .hero h1 { font-size: 2.7rem; }
  .tour-card img, .blog-card img, .gallery-card img { height: 220px; }
  .tour-card-body {
    padding: 1.5rem 1.35rem 1.45rem;
  }
  .tour-card-title {
    font-size: 1.85rem;
  }
  .tour-card-highlight {
    width: 100%;
    justify-content: flex-start;
  }
  .tour-card-button {
    width: 100%;
    min-width: 0;
  }
  .home-hero { min-height: 500px; height: 70vh; }
  .home-hero-arrow { display: none; }
  .home-hero-content { padding-top: 74px; }
  .home-image-stack img { height: 380px; }
  .experience-card { right: .5rem; bottom: -1.5rem; }
  .testimonial-card-slide {
    min-height: 0;
    padding: 2rem 1.4rem;
  }
  .premium-hero-support {
    padding: .9rem 1rem;
    font-size: .94rem;
  }
  .home-signature-shell,
  .home-testimonials-shell,
  .home-gallery-shell,
  .home-travel-info-shell {
    padding: 1.35rem;
    border-radius: 24px;
  }
  .about-hero-stats,
  .gallery-hero-stats,
  .about-intro-band-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-shell-copy h2 {
    font-size: 1.8rem;
  }
  .gallery-toolbar,
  .blog-featured-meta,
  .premium-blog-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-destination-pill strong { font-size: .72rem; }
  .navbar-brand {
    width: 166px;
    min-width: 166px;
  }
  .navbar-brand img,
  .site-navbar.scrolled .navbar-brand img { height: 58px; }
  .navbar-collapse { inset: 72px 0 0; }
  .dropdown-heading {
    left: 1rem;
    right: 1rem;
    letter-spacing: .12em;
  }
  .destination-guide-gallery {
    grid-template-columns: 1fr;
  }
  .destination-guide-split,
  .destination-fact-grid,
  .destination-guide-intro,
  .destination-info-card-grid,
  .destination-facts-strip {
    grid-template-columns: 1fr;
  }
  .destination-guide-secondary-image {
    max-width: 100%;
    min-height: 180px;
    margin-top: 0;
  }
  .destination-facts-strip {
    margin-top: -1.25rem;
    gap: .85rem;
  }
  .destination-fact-tile {
    padding: 1.05rem .9rem;
  }
  .destination-guide-hero {
    padding: 7.2rem 0 4rem;
  }
  .destination-guide-badge {
    padding: .65rem 1rem;
    font-size: .72rem;
  }
  .destination-guide-intro-copy h2,
  .destination-section-heading h2,
  .destination-page-cta h2 {
    font-size: 1.9rem;
  }
  .destination-info-card,
  .destination-arrival-block,
  .tour-detail-panel,
  .contact-info-card {
    padding: 1.15rem;
    border-radius: 20px;
  }
  .mission-card {
    padding: 1.5rem;
    border-radius: 24px;
  }
  .about-intro-band-shell,
  .about-story-shell {
    padding: 1.25rem;
  }
  .mission-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .mission-card-icon.why-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .tour-package-hero {
    min-height: 400px;
  }
  .tour-package-hero-content {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
  .tour-back-link {
    top: 1rem;
    left: 1rem;
  }
  .tour-hero-arrow { display: none; }
  .tour-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tour-day-media,
  .day-activity-card {
    grid-template-columns: 1fr;
  }
  .tour-day-image {
    max-width: 100%;
  }
  .tour-day-image img {
    height: 180px;
  }
  .day-activity-card img {
    width: 100%;
    height: 180px;
  }
  .blog-featured img,
  .contact-map iframe,
  .contact-map {
    height: 280px;
    min-height: 280px;
  }
  .gallery-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .gallery-tabs a {
    justify-content: center;
  }
  .section-title h2,
  .section-title.section-title-light h2 {
    font-size: 2rem;
  }
  .dark-cta,
  .destination-page-cta,
  .tour-detail-cta,
  .blog-cta {
    padding: 3.5rem 0;
  }
  .destination-spotlight {
    flex-direction: column;
  }
  .destination-arrival-panel,
  .destination-attractions-panel,
  .destination-faq-section {
    padding: 1.5rem;
  }
  .destination-arrival-panel .col-md-6 + .col-md-6 .destination-arrival-block {
    padding-left: 0;
  }
  .destination-section-heading h2 {
    font-size: 1.9rem;
  }
  .destination-page-cta {
    padding-inline: 1rem;
  }
  .destination-faq-accordion .accordion-button {
    padding: 1.15rem 1.15rem;
    font-size: .98rem;
  }
  .destination-faq-accordion .accordion-button::after {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }
  .destination-faq-accordion .accordion-body {
    padding: 0 1.15rem 1.2rem;
  }
  .destination-guide-detail .travel-country-image {
    height: 260px;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-masonry-item img,
  .professional-video-card img {
    height: 260px;
  }
  .professional-video-card {
    min-height: 260px;
  }
  .tour-builder-head,
  .tour-day-media,
  .day-activity-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .day-activity-card img {
    width: 100%;
    height: 200px;
  }
  .maintenance-brand {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .maintenance-brand > span {
    width: 86px;
    height: 86px;
    border-radius: 22px;
    font-size: 2.2rem;
  }
  .maintenance-brand small {
    letter-spacing: .28em;
  }
  .maintenance-contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .maintenance-contact-grid a {
    min-height: 76px;
    border-radius: 18px;
    font-size: 1.05rem;
  }
  .maintenance-panel footer {
    font-size: .9rem;
  }
  .mini-maintenance {
    min-height: 460px;
    padding: 1.2rem;
  }
  .mini-brand {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .section {
    padding: 3.25rem 0;
  }
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .navbar-brand {
    width: 148px;
    min-width: 148px;
  }
  .navbar-brand img,
  .site-navbar.scrolled .navbar-brand img {
    height: 52px;
  }
  .nav-phone-btn-mobile {
    padding: .55rem .75rem;
  }
  .home-hero {
    min-height: 500px;
  }
  .home-hero-content {
    padding-top: 96px;
    padding-bottom: 64px;
  }
  .hero h1,
  .premium-hero h1,
  .destination-guide-hero h1,
  .tour-package-hero h1 {
    font-size: 2rem;
  }
  .home-hero p,
  .hero p,
  .premium-hero p,
  .destination-guide-hero p {
    font-size: .96rem;
  }
  .destination-info-card-icon,
  .destination-heading-icon,
  .contact-info-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    font-size: 1.2rem;
  }
  .tour-thumbs {
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }
  .tour-booking-box .btn,
  .btn-light-pill,
  .destination-cta-outline,
  .btn-pill-gold {
    min-height: 52px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .78rem;
  }
  .contact-form-original textarea.form-control {
    min-height: 140px;
  }
  .gallery-masonry-item img,
  .professional-video-card img,
  .professional-video-card {
    height: 230px;
    min-height: 230px;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
