:root {
  --ink: #241b18;
  --muted: #74645b;
  --paper: #fff8e8;
  --white: #ffffff;
  --line: #ead9b8;
  --forest: #5a0718;
  --teal: #7f1225;
  --clay: #8f1d2b;
  --gold: #d9a33b;
  --sky: #fff0c9;
  --rose: #b5333d;
  --sand: #f6dfae;
  --shadow: 0 24px 70px rgba(36, 27, 24, .16);
  --deep-shadow: 0 34px 90px rgba(36, 27, 24, .28);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(90, 7, 24, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(217, 163, 59, .05) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}
h1 { font-size: clamp(3.3rem, 8.8vw, 8.4rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4.8vw, 4.7rem); }
h3 { font-size: 1.28rem; }
ul { margin: 0; padding-left: 1.2rem; }
li + li { margin-top: .45rem; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .78), rgba(255, 248, 232, .58));
  border-bottom: 1px solid rgba(217, 163, 59, .26);
  box-shadow: 0 18px 48px rgba(36, 27, 24, .09);
  backdrop-filter: blur(22px) saturate(150%);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .94), rgba(255, 243, 216, .86));
  box-shadow: 0 18px 54px rgba(36, 27, 24, .15);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 2000;
  background: linear-gradient(90deg, rgba(90, 7, 24, .16), rgba(217, 163, 59, .18));
  overflow: hidden;
  pointer-events: none;
  box-shadow: 0 1px 10px rgba(90, 7, 24, .22);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #5a0718 0%, #8f1026 42%, #d9a33b 78%, #5a0718 100%);
  background-size: 220% 100%;
  box-shadow:
    0 0 0 1px rgba(90, 7, 24, .12),
    0 0 14px rgba(90, 7, 24, .4);
  transition: transform .16s ease-out;
  animation: progress-glow 4.8s ease-in-out infinite;
}
.scroll-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 201, .48), transparent);
  transform: translateX(-120%);
  animation: progress-sheen 3.6s ease-in-out infinite;
}
.scroll-progress.is-moving span {
  animation-duration: 2.8s;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 7, 24, .36), rgba(217, 163, 59, .7), rgba(90, 7, 24, .36), transparent);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 150px;
  min-height: 58px;
  padding: .22rem .55rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.site-header .logo span {
  display: none;
}
.site-header .logo {
  min-width: 184px;
  min-height: 64px;
  padding: .34rem .72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(217, 163, 59, .28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.site-header .logo-img {
  width: 172px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
}
.logo-img {
  width: 148px;
  height: 54px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: .28rem;
  padding: .42rem;
  border: 1px solid rgba(217, 163, 59, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 12px 38px rgba(90, 7, 24, .08);
}
.nav > a,
.dropdown-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: .62rem .92rem;
  font: inherit;
  font-size: .88rem;
  font-weight: 900;
  cursor: pointer;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav > a::before,
.dropdown-toggle::before {
  content: "";
  position: absolute;
  inset: auto 18% 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform .2s ease;
}
.nav > a:hover,
.dropdown-toggle:hover {
  color: var(--clay);
  background: rgba(217, 163, 59, .16);
  transform: translateY(-1px);
}
.nav > a:hover::before,
.dropdown-toggle:hover::before,
.dropdown-toggle[data-current="page"]::before,
.nav a[aria-current="page"]::before {
  transform: scaleX(1);
}
.nav a[aria-current="page"],
.dropdown-toggle[data-current="page"] {
  color: var(--forest);
  background: rgba(90, 7, 24, .08);
}
.nav-cta {
  background: linear-gradient(135deg, #5a0718, #241b18) !important;
  color: var(--white) !important;
  border-radius: 999px;
  padding-inline: 1.25rem !important;
  box-shadow: 0 12px 26px rgba(90, 7, 24, .28);
}
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 205px;
  padding: .45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 46px rgba(36, 27, 24, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s cubic-bezier(.2, .8, .2, 1);
}
.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: .68rem .78rem;
  border-radius: 11px;
  font-weight: 800;
  color: var(--muted);
  transition: color .16s ease, background .16s ease, transform .16s ease;
}
.dropdown-menu a:hover {
  color: var(--clay);
  background: rgba(217, 163, 59, .12);
  transform: translateX(2px);
}
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 12;
}
.lang-current {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  border: 1px solid rgba(234, 217, 184, .72);
  border-radius: 999px;
  background: rgba(255, 248, 232, .74);
  color: var(--ink);
  padding: .62rem .82rem;
  font: inherit;
  font-size: .88rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.lang-current:hover,
.lang-switch.is-open .lang-current {
  color: var(--clay);
  background: rgba(255, 248, 232, .92);
  transform: translateY(-1px);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  padding: .45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 46px rgba(36, 27, 24, .15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s cubic-bezier(.2, .8, .2, 1);
}
.lang-menu.open,
.lang-switch.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-option {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 16px;
  align-items: center;
  gap: .55rem;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  padding: .68rem .78rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}
.lang-option:hover,
.lang-option.is-active {
  color: var(--clay);
  background: rgba(217, 163, 59, .12);
}
.lang-option:hover {
  transform: translateX(2px);
}
.lang-option-name {
  font-weight: 800;
}
.lang-option-code {
  color: var(--forest);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lang-check {
  opacity: 0;
  color: var(--gold);
}
.lang-option.is-active .lang-check {
  opacity: 1;
}
.dropdown-menu a[aria-current="page"] {
  color: #8f1026;
  background: linear-gradient(90deg, rgba(217, 163, 59, .2), rgba(255, 241, 207, .56));
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  min-height: clamp(720px, calc(96svh - 78px), 980px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36,27,24,.9), rgba(90,7,24,.58) 45%, rgba(36,27,24,.28)),
    linear-gradient(0deg, rgba(36,27,24,.74), rgba(90,7,24,.04) 48%, rgba(217,163,59,.1));
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .38;
  background-image:
    linear-gradient(120deg, transparent 0 46%, rgba(255,240,201,.18) 46% 47%, transparent 47% 100%),
    linear-gradient(60deg, transparent 0 54%, rgba(217,163,59,.16) 54% 55%, transparent 55% 100%);
  background-size: 180px 180px;
  animation: pattern-drift 20s linear infinite;
}
.hero-content {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-content p {
  color: rgba(255,255,255,.86);
  max-width: 650px;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}
.hero-actions,
.cta-actions,
.card-actions,
.form-message-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-panel {
  width: min(100%, 780px);
  position: relative;
  padding-left: clamp(1rem, 3vw, 1.8rem);
}
.hero-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  width: 8px;
  height: min(76%, 420px);
  background: linear-gradient(180deg, var(--gold), var(--rose), rgba(255,240,201,.9));
  box-shadow: 0 0 26px rgba(217, 163, 59, .48);
  animation: hero-line-pulse 2.8s ease-in-out infinite alternate;
}
.hero-panel h1 {
  text-wrap: balance;
  text-shadow: 0 20px 60px rgba(0,0,0,.42);
}
.hero-visual-stack {
  position: relative;
  min-height: min(62svh, 610px);
  display: grid;
  place-items: center;
}
.hero-photo {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 201, .48);
  background: var(--sand);
  box-shadow: var(--deep-shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-main {
  width: min(72%, 390px);
  aspect-ratio: 3 / 4;
  border-radius: 44% 44% 10px 10px;
  transform: rotate(4deg);
  animation: float-main 7s ease-in-out infinite;
}
.hero-photo-top {
  width: min(48%, 250px);
  aspect-ratio: 4 / 5;
  right: 0;
  top: 4%;
  border-radius: 999px 999px 10px 10px;
  transform: rotate(-9deg);
  animation: float-top 6.3s ease-in-out infinite;
}
.hero-photo-bottom {
  width: min(50%, 270px);
  aspect-ratio: 5 / 4;
  left: 0;
  bottom: 7%;
  border-radius: 10px 10px 999px 999px;
  transform: rotate(-5deg);
  animation: float-bottom 7.8s ease-in-out infinite;
}
.hero-route-badge {
  position: absolute;
  right: 3%;
  bottom: 17%;
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  width: min(250px, 70%);
  padding: .75rem;
  color: var(--ink);
  background: rgba(255, 248, 232, .86);
  border: 1px solid rgba(217, 163, 59, .52);
  box-shadow: 0 18px 46px rgba(36, 27, 24, .22);
  backdrop-filter: blur(14px);
}
.hero-route-badge span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(90, 7, 24, .16);
  border-radius: 999px;
  padding: .32rem .56rem;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 900;
  background: rgba(255,255,255,.56);
}
.page-hero {
  min-height: 56svh;
  padding-top: 1.5rem;
  background-position: center;
}
.page-hero .hero-content {
  grid-template-columns: 1fr;
  padding: clamp(5rem, 8.5vw, 7rem) 0 clamp(3rem, 5.2vw, 4.4rem);
}
.page-hero .hero-panel {
  max-width: 880px;
  padding-left: 0;
  transform: none;
}
.page-hero .hero-panel::before {
  display: none;
}
.page-hero h1 {
  font-size: clamp(3.15rem, 6.8vw, 6.8rem);
  line-height: .94;
  text-wrap: balance;
}
.page-hero p {
  max-width: 660px;
  margin-top: 1.1rem;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: .82rem 1.18rem;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(36, 27, 24, .12);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: transform .55s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(36, 27, 24, .18);
}
.btn:hover::after { transform: translateX(115%); }
.btn-primary { background: linear-gradient(135deg, var(--forest), var(--rose)); color: var(--white); border-color: transparent; }
.btn-secondary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.btn-ghost { color: var(--ink); background: var(--white); }
.btn-green { background: var(--teal); color: var(--white); border-color: var(--teal); }

.journey-ribbon {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid rgba(217, 163, 59, .34);
}
.journey-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: .8rem 0;
  animation: ribbon-roll 32s linear infinite;
}
.journey-track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 248, 232, .86);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.journey-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(217, 163, 59, .88);
}

.trust-strip {
  background:
    linear-gradient(135deg, rgba(90, 7, 24, .98), rgba(36, 27, 24, .96));
  color: var(--white);
  border-block: 1px solid rgba(217, 163, 59, .22);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(217,163,59,.22), rgba(255,255,255,.16));
}
.trust-item {
  min-height: 130px;
  background: transparent;
  padding: 1.35rem;
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, background .2s ease;
}
.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  background: linear-gradient(180deg, rgba(217,163,59,.18), transparent);
  transition: transform .24s ease;
}
.trust-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.04);
}
.trust-item:hover::before {
  transform: translateY(0);
}
.trust-item strong { display: block; font-size: 1.05rem; }
.trust-item span { color: rgba(255,255,255,.72); }

.section {
  padding: clamp(3.7rem, 6.4vw, 6.3rem) 0;
  position: relative;
}
.section.alt {
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,240,201,.45)),
    var(--white);
  border-block: 1px solid var(--line);
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(135deg, transparent 0 47%, rgba(90,7,24,.22) 47% 48%, transparent 48% 100%);
  background-size: 96px 96px;
}
.section > .container {
  position: relative;
}
.section-header {
  max-width: 820px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.35rem);
  text-align: center;
}
.section-header.align-left {
  margin-inline: 0;
  text-align: left;
}
.section-header p {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}
.section-rule {
  width: 128px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--rose));
  margin: 1.2rem auto 0;
  box-shadow: 0 0 20px rgba(217, 163, 59, .3);
}
.align-left .section-rule { margin-left: 0; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.35rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(36, 27, 24, .1);
  color: inherit;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(217,163,59,.34), transparent 38%, rgba(90,7,24,.18)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(36, 27, 24, .18);
  border-color: rgba(217, 163, 59, .58);
}
.card:hover::before { opacity: 1; }
.grid-3 > .card:nth-child(3n + 2) {
  transform: translateY(18px);
}
.grid-3 > .card:nth-child(3n + 2):hover {
  transform: translateY(8px);
}
.tour-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}
.media-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky);
  position: relative;
}
.media-frame.wide { aspect-ratio: 16 / 10; }
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transition: transform .65s ease, filter .65s ease;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(36,27,24,.24));
  opacity: .7;
  pointer-events: none;
}
.card:hover .media-frame img {
  transform: scale(1.08) rotate(.7deg);
  filter: saturate(1.18) contrast(1.06);
}
.card-body {
  padding: 1.22rem;
  display: grid;
  gap: .85rem;
  position: relative;
  z-index: 2;
}
.meta-row {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid var(--line);
  padding: .36rem .55rem;
  font-size: .78rem;
  font-weight: 900;
  color: var(--forest);
  border-radius: 999px;
  background: #fff1cf;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
}
.badge svg { width: 14px; height: 14px; }
.tour-price {
  color: var(--clay);
  font-weight: 900;
}
.section-more,
.center { text-align: center; }
.mt-32 { margin-top: 2rem; }

.services-layout,
.split,
.contact-layout,
.vehicle-detail-grid {
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-layout {
  gap: clamp(1.8rem, 4vw, 4rem);
}
.vehicle-detail-grid {
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.vehicle-detail-grid > .grid {
  grid-template-columns: 1fr;
  width: min(100%, 560px);
  justify-self: end;
  gap: 1rem;
}
.vehicle-detail-grid > .grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(217, 163, 59, .24);
  box-shadow: 0 18px 48px rgba(36, 27, 24, .1);
}
.vehicle-detail .feature-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  gap: 1rem;
}
.vehicle-detail .feature-tile {
  min-height: 150px;
  padding: 1.05rem 1.15rem;
}
.vehicle-detail .feature-tile strong,
.vehicle-detail .feature-tile p {
  overflow-wrap: break-word;
}
.vehicle-detail .feature-tile p {
  margin-top: .35rem;
  line-height: 1.45;
}
.travel-services {
  background:
    linear-gradient(90deg, rgba(255,248,232,.9), rgba(255,240,201,.45)),
    var(--paper);
}
.services-intro {
  position: sticky;
  top: 110px;
}
.services-eyebrow,
.kicker {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}
.services-link { display: inline-flex; margin-top: 1.25rem; font-weight: 900; color: var(--teal); }
.services-grid { display: grid; border-top: 1px solid var(--line); }
.service-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: transform .2s ease, padding-left .2s ease, background .2s ease;
}
.service-item:hover {
  padding-left: .75rem;
  transform: translateX(8px);
  background: linear-gradient(90deg, rgba(217,163,59,.12), transparent);
}
.service-index {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 900;
}
.stack { display: grid; gap: .85rem; }
.mini-feature,
.info-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 232, .72);
  box-shadow: 0 10px 26px rgba(36, 27, 24, .06);
  transition: transform .2s ease, background .2s ease;
}
.mini-feature:hover,
.info-item:hover {
  transform: translateX(8px);
  background: var(--white);
}
.split-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 999px 999px 8px 8px;
  box-shadow: var(--deep-shadow);
}

.destination-card .card-body { min-height: 130px; }
.reviews-band {
  background:
    linear-gradient(135deg, rgba(255,240,201,.92), rgba(255,248,232,.7)),
    var(--sky);
}
.review-card blockquote {
  margin: 0;
  color: var(--ink);
}
.review-card cite { font-style: normal; font-weight: 900; color: var(--clay); }
.stars::before { content: "★★★★★"; color: var(--gold); letter-spacing: .12em; }

.cta {
  background:
    linear-gradient(135deg, rgba(90,7,24,.94), rgba(36,27,24,.98)),
    var(--ink);
  color: var(--white);
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: auto -10% -80px;
  height: 160px;
  background:
    repeating-linear-gradient(90deg, rgba(217,163,59,.22) 0 1px, transparent 1px 34px);
  transform: rotate(-2deg);
  pointer-events: none;
}
.cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cta p { color: rgba(255,255,255,.72); margin-top: .6rem; }

.tour-filter-row {
  display: flex;
  gap: .55rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}
.tour-filter-row button {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .78);
  padding: .7rem .95rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.tour-filter-row button:hover {
  transform: translateY(-2px);
  background: var(--white);
}
.tour-filter-row button.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.feature-tiles,
.route-list {
  display: grid;
  gap: .85rem;
}
.feature-tiles { grid-template-columns: repeat(4, 1fr); }
.feature-tile {
  padding: 1.1rem;
  background: rgba(255, 250, 240, .78);
  border: 1px solid rgba(217, 163, 59, .28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(36, 27, 24, .08);
  transition: transform .2s ease, background .2s ease;
}
.feature-tile:hover {
  transform: translateY(-5px);
  background: var(--white);
}
.route-list {
  list-style: none;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
}
.route-list li {
  margin: 0;
  padding: .9rem 1rem;
  background: rgba(255, 250, 240, .82);
  border: 1px solid rgba(217, 163, 59, .28);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(36, 27, 24, .07);
  font-weight: 800;
}
.transfer-support {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .9), rgba(255, 241, 207, .42)),
    var(--paper);
}
.transfer-support .container {
  max-width: 1320px;
}
.transfer-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.55rem);
  margin-bottom: clamp(1.45rem, 2.3vw, 2.05rem);
}
.transfer-support .feature-card {
  min-height: 205px;
  padding: clamp(1.15rem, 1.8vw, 1.55rem);
  background: rgba(255, 250, 240, .78);
  border-color: rgba(36, 27, 24, .13);
  box-shadow: 0 18px 58px rgba(36, 27, 24, .08);
}
.transfer-support .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 163, 59, .42);
  box-shadow: 0 26px 80px rgba(36, 27, 24, .16);
}
.transfer-support .feature-icon {
  display: none;
}
.transfer-support .feature-card h3 {
  color: var(--forest);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.22rem, 1.55vw, 1.5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: .85rem;
}
.transfer-support .feature-card p {
  color: var(--muted);
  font-size: clamp(.98rem, 1.1vw, 1.05rem);
  line-height: 1.55;
}
.transfer-route-list {
  gap: clamp(.85rem, 1.45vw, 1.15rem);
}
.transfer-route-list li {
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.28vw, 1.14rem);
  font-weight: 500;
}
.desert-route-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .86), rgba(255, 241, 207, .36)),
    var(--paper);
}
.desert-route-header {
  max-width: 820px;
}
.desert-route-header h2,
.tour-highlights-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.75rem);
  line-height: .96;
  text-wrap: balance;
}
.desert-route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
  margin-top: clamp(2rem, 3vw, 3rem);
}
.desert-route-card {
  min-height: 210px;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  border: 1px solid rgba(217, 163, 59, .28);
  border-radius: 8px;
  background: rgba(255, 250, 240, .78);
  box-shadow: 0 22px 58px rgba(36, 27, 24, .08);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.desert-route-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 250, 240, .94);
  box-shadow: 0 28px 70px rgba(36, 27, 24, .12);
}
.desert-route-card h3 {
  margin-bottom: .75rem;
  color: var(--clay);
  font-size: clamp(1.24rem, 1.55vw, 1.55rem);
  line-height: 1.08;
}
.desert-route-card p {
  color: var(--muted);
  line-height: 1.5;
}
.tour-highlights-section {
  background:
    linear-gradient(90deg, rgba(255, 248, 232, .8), rgba(255, 241, 207, .34)),
    var(--paper);
}
.tour-highlights-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.tour-highlights-copy {
  max-width: 620px;
}
.tour-highlights-copy p {
  max-width: 34rem;
  margin-top: .75rem;
}
.tour-highlights-copy .section-rule {
  margin: 1.35rem 0 0;
}
.highlight-list {
  display: grid;
  gap: .9rem;
  margin-top: clamp(1.7rem, 3vw, 2.5rem);
}
.highlight-row {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 1.12rem;
  border: 1px solid rgba(217, 163, 59, .24);
  border-radius: 8px;
  background: rgba(255, 250, 240, .72);
  box-shadow: 0 16px 42px rgba(36, 27, 24, .06);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  transition: transform .2s ease, background .2s ease;
}
.highlight-row:hover {
  transform: translateX(8px);
  background: var(--white);
}
.highlight-row span:first-child {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 900;
}
.highlight-row span:last-child {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--ink);
  overflow-wrap: break-word;
}
.tour-highlights-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 24px 74px rgba(36, 27, 24, .14);
}
.category-card {
  min-height: 420px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(36, 27, 24, .14);
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,27,24,.08), rgba(36,27,24,.25) 42%, rgba(90,7,24,.84));
}
.category-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .8rem;
}
.category-card .kicker {
  width: fit-content;
  margin-bottom: 0;
  padding: .26rem .48rem .23rem;
  border-radius: 999px;
  color: #fff0d0;
  background: rgba(90, 7, 24, .56);
  border: 1px solid rgba(255, 248, 232, .18);
  box-shadow: 0 7px 18px rgba(36, 27, 24, .14);
  text-shadow: 0 1px 7px rgba(0, 0, 0, .22);
  font-size: .68rem;
  backdrop-filter: blur(8px);
}
.category-card h2 {
  font-size: clamp(2.25rem, 3.5vw, 4.2rem);
  line-height: .92;
}
.category-card p { color: rgba(255,255,255,.78); }
.home-page .tour-categories-section .container {
  max-width: 1300px;
}
.home-page .tour-categories-section .card {
  background: rgba(255, 250, 240, .76);
  border-color: rgba(36, 27, 24, .13);
  box-shadow: 0 18px 58px rgba(36, 27, 24, .08);
  backdrop-filter: blur(10px);
}
.home-page .tour-categories-section .card:hover {
  border-color: rgba(217, 163, 59, .42);
  box-shadow: 0 26px 80px rgba(36, 27, 24, .16);
}
.home-page .tour-categories-section .tour-card .media-frame {
  aspect-ratio: 7 / 6;
}
.home-page .tour-categories-section .card-body {
  padding: 1.25rem 1.25rem 1.35rem;
  gap: .78rem;
}
.home-page .tour-categories-section .card-body h3 {
  font-size: clamp(1.42rem, 1.8vw, 1.9rem);
  line-height: 1.02;
}
.home-page .tour-categories-section .card-body p {
  line-height: 1.42;
}
.home-page .tour-categories-section .btn {
  min-height: 46px;
  padding: .8rem 1.22rem;
}

.form-panel,
.details-panel,
.legal-panel {
  background: rgba(255, 250, 240, .86);
  border: 1px solid rgba(217, 163, 59, .25);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(36, 27, 24, .1);
  padding: clamp(1.2rem, 3vw, 2rem);
}
.legal-panel {
  max-width: 940px;
  margin-inline: auto;
  display: grid;
  gap: .9rem;
}
.legal-panel h2 {
  font-family: Inter, system-ui, sans-serif;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.08;
  margin-top: .5rem;
}
.legal-panel h2:first-child {
  margin-top: 0;
}
.legal-panel p {
  max-width: 78ch;
}
.contact-cards {
  display: grid;
  gap: .75rem;
  margin-top: 1.2rem;
}
.contact-cards a,
.contact-cards span {
  display: block;
  padding: .9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 800;
}
form { display: grid; gap: .9rem; margin-top: 1.2rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.form-field {
  display: grid;
  gap: .35rem;
}
.form-field label { font-weight: 900; font-size: .9rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: .85rem .9rem;
  font: inherit;
  color: var(--ink);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea { border-color: var(--clay); }
.form-message {
  display: none;
  padding: 1rem;
  background: var(--sky);
  border: 1px solid #e0bd70;
}
.form-message.show { display: block; }
.home-page .contact-main-section {
  padding-top: clamp(2.3rem, 4.2vw, 3.8rem);
  padding-bottom: clamp(2.4rem, 4.4vw, 3.8rem);
}
.contact-layout .details-panel {
  align-self: start;
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
}
.contact-layout .form-panel {
  padding: clamp(1.25rem, 2.35vw, 1.85rem);
}
.contact-layout .details-panel h2,
.contact-layout .form-panel h2 {
  font-size: clamp(2.45rem, 4vw, 4.45rem);
  line-height: .96;
}
.contact-layout .form-panel h2 {
  max-width: 560px;
}
.contact-layout .contact-cards {
  gap: .72rem;
  margin-top: .65rem;
}
.contact-layout .contact-cards a,
.contact-layout .contact-cards span {
  padding: .72rem .82rem;
  background: rgba(255, 248, 232, .7);
  border-color: rgba(217, 163, 59, .24);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.contact-layout .contact-cards a:hover {
  transform: translateX(5px);
  border-color: rgba(90, 7, 24, .34);
  background: rgba(255, 250, 240, .96);
}
.contact-layout .contact-cards span {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  box-shadow: none;
  line-height: 1.25;
}
.contact-layout .contact-cards > span br {
  display: none;
}
.contact-layout .contact-cards span strong {
  display: block;
  margin-bottom: .08rem;
  color: #241b18;
}
.contact-layout .contact-cards .contact-value {
  display: block;
  margin-top: .08rem;
  color: #241b18;
  font-weight: 800;
}
.contact-layout .contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .45rem;
}
.contact-layout .contact-cards a[data-whatsapp],
.contact-layout .contact-cards a[data-tripadvisor] {
  width: fit-content;
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}
.contact-layout .contact-cards a[data-whatsapp] {
  background: #7b0b20;
  color: var(--white);
  border-color: #7b0b20;
}
.contact-layout .contact-cards a[data-tripadvisor] {
  background: #e1ac3c;
  color: #241b18;
  border-color: rgba(90, 7, 24, .18);
}
.contact-layout .contact-cards a[data-whatsapp]:hover,
.contact-layout .contact-cards a[data-tripadvisor]:hover {
  transform: translateY(-2px);
}
.contact-layout form {
  gap: .68rem;
}
.contact-layout .form-field {
  gap: .32rem;
}
.contact-layout .form-field input,
.contact-layout .form-field select,
.contact-layout .form-field textarea {
  padding: .72rem .82rem;
  border-color: rgba(217, 163, 59, .26);
  background: rgba(255, 248, 232, .62);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.contact-layout .form-field input:focus,
.contact-layout .form-field select:focus,
.contact-layout .form-field textarea:focus {
  outline: none;
  border-color: rgba(90, 7, 24, .5);
  background: rgba(255, 250, 240, .95);
  box-shadow: 0 0 0 3px rgba(217, 163, 59, .16), inset 0 1px 0 rgba(255, 255, 255, .78);
}
.contact-layout .form-field textarea {
  min-height: 108px;
}
.contact-layout .btn[type="submit"] {
  width: fit-content;
  min-width: 190px;
  justify-self: start;
  margin-top: .25rem;
  background: linear-gradient(135deg, #7b0b20, #9d102b);
  color: var(--white);
  border-color: rgba(123, 11, 32, .9);
  box-shadow: 0 16px 34px rgba(90, 7, 24, .18);
}
.contact-layout .form-message:empty {
  display: none !important;
}
.contact-layout .form-message {
  margin-top: .2rem;
  padding: .9rem 1rem;
  border-radius: 8px;
  background: rgba(255, 241, 207, .86);
  border-color: rgba(217, 163, 59, .42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.contact-layout .form-message p {
  margin: .18rem 0 .55rem;
}
.contact-layout .form-message-actions {
  gap: .55rem;
}
.contact-layout .form-message-actions .btn {
  min-height: 46px;
  padding: .75rem 1.15rem;
}
.contact-layout .form-message-actions .btn-green {
  background: linear-gradient(135deg, #7b0b20, #9d102b);
  color: var(--white);
  border-color: rgba(123, 11, 32, .9);
}
.contact-layout .form-message-actions .btn-primary {
  background: rgba(255, 250, 240, .9);
  color: #5a0718;
  border-color: rgba(255, 250, 240, .9);
}
.contact-map-section {
  padding-top: clamp(3rem, 6vw, 5.5rem);
}
.contact-map-section .section-header {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}
.map-panel {
  overflow: hidden;
  width: min(100%, 1040px);
  min-height: 390px;
  margin-inline: auto;
  border: 1px solid rgba(217, 163, 59, .3);
  border-radius: 8px;
  background: rgba(255, 250, 240, .78);
  box-shadow: 0 24px 70px rgba(36, 27, 24, .12);
}
.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 390px;
  border: 0;
}
.map-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}
.map-actions .btn {
  background: #7b0b20;
  color: var(--white);
  border-color: #7b0b20;
  box-shadow: 0 16px 36px rgba(90, 7, 24, .2);
}

.faq-list { display: grid; gap: .75rem; max-width: 920px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 1.1rem 1.1rem;
}
.faq-item.open .faq-answer { display: block; }

.about-promise-section {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}
.about-promise-section .container,
.about-faq-section .container {
  max-width: 1320px;
}
.about-promise-card {
  padding: clamp(1.45rem, 2.1vw, 2rem);
  border: 1px solid rgba(36, 27, 24, .13);
  border-radius: 8px;
  background: rgba(255, 250, 240, .78);
  box-shadow: 0 18px 58px rgba(36, 27, 24, .08);
}
.about-promise-card h2 {
  margin-bottom: .9rem;
  color: var(--forest);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
}
.about-promise-card p {
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}
.about-faq-section {
  padding-top: clamp(3rem, 5vw, 5rem);
}

.site-footer {
  background: #241b18;
  color: var(--white);
  padding: 3.25rem 0 1.35rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .75fr .75fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 390px;
}
.footer-logo {
  width: fit-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}
.footer-logo span {
  max-width: none;
  white-space: nowrap;
  color: rgba(255, 248, 232, .9);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.site-footer p,
.site-footer span { color: rgba(255,255,255,.68); }
.site-footer h3 {
  font-size: .95rem;
  margin-bottom: .85rem;
  color: rgba(255, 248, 232, .92);
}
.footer-links {
  display: grid;
  gap: .52rem;
}
.footer-links a { color: rgba(255,255,255,.76); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.2rem;
  padding-top: 1rem;
  color: rgba(255,255,255,.52);
}

.modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  background: rgba(36, 27, 24, .76);
  padding: 24px;
  overflow: auto;
}
.modal-overlay.open { display: block; }
.tour-modal {
  width: min(1040px, 100%);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  position: relative;
}
.modal-close {
  position: sticky;
  top: 12px;
  margin-left: auto;
  z-index: 2;
  display: block;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
.modal-hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.modal-content {
  padding: clamp(1.2rem, 4vw, 3rem);
  display: grid;
  gap: 1.4rem;
}
.tour-detail-page main {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .92), rgba(255, 240, 201, .32) 42%, rgba(255, 248, 232, .96)),
    var(--paper);
}
.tour-detail-hero {
  position: relative;
  min-height: clamp(500px, 64vh, 680px);
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.tour-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 27, 24, .82), rgba(36, 27, 24, .48) 48%, rgba(36, 27, 24, .18)),
    linear-gradient(180deg, rgba(36, 27, 24, .1), rgba(36, 27, 24, .78));
}
.tour-detail-hero .container {
  position: relative;
  z-index: 1;
  padding: clamp(4.6rem, 8vw, 6.8rem) 0 clamp(2.75rem, 5.4vw, 4.2rem);
}
.tour-detail-back {
  display: inline-flex;
  color: #fff8e8;
  font-weight: 900;
  margin-bottom: 1.4rem;
  opacity: .9;
}
.tour-detail-back:hover {
  color: var(--gold);
}
.tour-detail-hero-copy {
  width: min(880px, 100%);
  display: grid;
  gap: .9rem;
}
.tour-detail-hero-copy h1 {
  color: var(--white);
  text-shadow: 0 20px 52px rgba(0, 0, 0, .42);
  font-size: clamp(2.85rem, 6.5vw, 6.15rem);
  line-height: .95;
}
.tour-detail-hero-copy p {
  width: min(760px, 100%);
  color: rgba(255, 248, 232, .9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}
.tour-detail-hero .kicker {
  color: #ffd978;
}
.detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .8rem;
}
.tour-detail-meta-strip {
  margin-top: -36px;
  position: relative;
  z-index: 4;
}
.tour-detail-meta-strip .info-grid {
  background: rgba(255, 248, 232, .94);
  border: 1px solid rgba(217, 163, 59, .38);
  box-shadow: var(--shadow);
  padding: .75rem;
}
.tour-detail-content-section {
  padding-top: clamp(2.5rem, 5vw, 4.4rem);
}
.tour-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
}
.tour-detail-main,
.tour-detail-sidebar {
  display: grid;
  gap: 1rem;
}
.tour-detail-sidebar {
  position: sticky;
  top: 112px;
}
.detail-panel,
.detail-section {
  background: rgba(255, 255, 255, .48);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(36, 27, 24, .08);
  padding: clamp(1rem, 2.15vw, 1.5rem);
}
.detail-section {
  display: grid;
  gap: 1rem;
}
.detail-section h2,
.detail-panel h2 {
  color: var(--forest);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  line-height: 1.08;
}
.detail-section h3,
.detail-panel h3 {
  color: var(--forest);
}
.detail-lead {
  font-size: clamp(1rem, 1.12vw, 1.05rem);
}
.detail-list {
  display: grid;
  gap: .7rem;
  padding: 0;
  list-style: none;
}
.detail-list li {
  margin: 0;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 248, 232, .72);
  font-weight: 800;
}
.detail-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.summary-list {
  display: grid;
  gap: .7rem;
  margin-top: .9rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: .75rem;
}
.summary-row span {
  color: var(--muted);
  font-weight: 800;
}
.summary-row strong {
  text-align: right;
  color: var(--ink);
}
.tour-detail-sidebar .cta-actions {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}
.tour-detail-sidebar .btn {
  width: 100%;
}
.modal-meta {
  color: var(--clay);
  font-weight: 900;
}
.info-grid,
.calc-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.modal-section {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .85rem;
}
.itinerary { display: grid; gap: .8rem; }
.itinerary-day {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem;
}
.day-label,
.segment-time { color: var(--clay); font-weight: 900; }
.day-timeline {
  display: grid;
  gap: .6rem;
  margin-top: .8rem;
}
.timeline-segment {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: .75rem;
  padding-top: .6rem;
  border-top: 1px solid var(--line);
}
.price-calc {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem;
}
.price-calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.price-calc-extras {
  border: 1px solid var(--line);
  padding: .8rem;
  display: grid;
  gap: .5rem;
}
.price-calc-extras legend {
  padding: 0 .35rem;
  color: var(--forest);
  font-weight: 900;
}
.extra-option {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  font-weight: 800;
}
.price-calc-form { display: grid; gap: .9rem; }
.calc-field { display: grid; gap: .25rem; }
.calc-field input,
.calc-field select {
  border: 1px solid var(--line);
  padding: .7rem;
  font: inherit;
}
.calc-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
.price-calc-result {
  margin-top: 1rem;
  padding: .9rem;
  background: var(--paper);
  border: 1px solid var(--line);
}
.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 200;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.floating-whatsapp {
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .72), transparent 34%),
    linear-gradient(145deg, #fff8e8 0%, #eadbbe 100%);
  color: #7b0b20;
  border: 1px solid rgba(217, 159, 47, .7);
  box-shadow: 0 18px 42px rgba(36, 27, 24, .18), 0 8px 24px rgba(217, 159, 47, .18);
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.back-to-top {
  right: 20px;
  bottom: 108px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: .001;
  transform: translateY(26px) scale(.985);
  transition:
    opacity .72s ease var(--reveal-delay, 0ms),
    transform .72s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.premium-motion body {
  animation: premium-page-in .7s ease both;
}

.premium-motion .site-header {
  animation: premium-header-in .72s cubic-bezier(.16, 1, .3, 1) both;
}

.premium-motion .hero-panel > *,
.premium-motion .page-hero .container > *,
.premium-motion .tour-detail-hero-copy > * {
  animation: premium-hero-rise .78s cubic-bezier(.16, 1, .3, 1) both;
}

.premium-motion .hero-panel > *:nth-child(2),
.premium-motion .page-hero .container > *:nth-child(2),
.premium-motion .tour-detail-hero-copy > *:nth-child(2) {
  animation-delay: .08s;
}

.premium-motion .hero-panel > *:nth-child(3),
.premium-motion .page-hero .container > *:nth-child(3),
.premium-motion .tour-detail-hero-copy > *:nth-child(3) {
  animation-delay: .16s;
}

.premium-motion .hero-panel > *:nth-child(4),
.premium-motion .page-hero .container > *:nth-child(4),
.premium-motion .tour-detail-hero-copy > *:nth-child(4) {
  animation-delay: .24s;
}

.premium-motion .section-header.reveal.is-visible .section-rule,
.premium-motion .reveal.is-visible .section-rule {
  animation: premium-rule-grow .72s cubic-bezier(.16, 1, .3, 1) both;
}

.premium-motion .card.reveal,
.premium-motion .tour-card.reveal,
.premium-motion .collection-card.reveal {
  opacity: .001;
  transform: translateY(72px) scale(.92) rotateX(8deg);
  transform-origin: center bottom;
  transition:
    opacity .95s ease var(--reveal-delay, 0ms),
    transform .95s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}

.premium-motion .card.reveal.is-visible,
.premium-motion .tour-card.reveal.is-visible,
.premium-motion .collection-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.premium-motion .card:hover {
  transform: none;
}

.premium-motion .grid-3 > .card:nth-child(3n + 2):hover {
  transform: none;
}

.premium-motion .card:hover .media-frame img {
  transform: none;
}

.premium-motion .btn:hover {
  transform: none;
}

@keyframes pattern-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 180px 180px, -180px 180px; }
}
@keyframes progress-glow {
  0%, 100% { background-position: 0% 50%; filter: brightness(1); }
  50% { background-position: 100% 50%; filter: brightness(1.08); }
}
@keyframes progress-sheen {
  0%, 58% { transform: translateX(-120%); opacity: 0; }
  68% { opacity: .8; }
  100% { transform: translateX(240%); opacity: 0; }
}
@keyframes hero-line-pulse {
  from { transform: scaleY(.84); filter: brightness(1); }
  to { transform: scaleY(1); filter: brightness(1.18); }
}
@keyframes float-main {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
@keyframes float-top {
  0%, 100% { transform: translateY(0) rotate(-9deg); }
  50% { transform: translateY(16px) rotate(-6deg); }
}
@keyframes float-bottom {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(-8deg); }
}
@keyframes ribbon-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes premium-page-in {
  from { opacity: .001; }
  to { opacity: 1; }
}
@keyframes premium-header-in {
  from { opacity: .001; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes premium-hero-rise {
  from { opacity: .001; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes premium-rule-grow {
  from { transform: scaleX(.16); opacity: .45; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 84px;
    justify-content: space-between;
  }
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    inset: 84px 0 auto 0;
    display: none;
    padding: .8rem 1rem 1.2rem;
    background: var(--paper);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 18px 38px rgba(36, 27, 24, .14);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: .2rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .lang-switch {
    width: 100%;
  }
  .lang-current {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, .62);
    border: 1px solid var(--line);
  }
  .lang-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: .2rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .lang-menu.open,
  .lang-switch.is-open .lang-menu {
    display: grid;
  }
  .trust-grid,
  .grid-3,
  .desert-route-cards,
  .transfer-support-grid,
  .feature-tiles,
  .route-list,
  .footer-grid,
  .info-grid,
  .calc-controls {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-layout,
  .split,
  .contact-layout,
  .tour-highlights-layout,
  .vehicle-detail-grid,
  .cta .container,
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual-stack {
    min-height: 430px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
  .services-intro { position: static; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.5rem, 14vw, 4.4rem); }
  .hero { min-height: auto; }
  .hero-content { padding: 4rem 0 2.5rem; }
  .hero-panel { padding-left: 1rem; }
  .hero-panel::before { width: 5px; }
  .hero-visual-stack { min-height: 330px; }
  .hero-photo-main { width: min(72%, 300px); }
  .hero-photo-top { width: min(44%, 190px); }
  .hero-photo-bottom { width: min(48%, 210px); }
  .hero-route-badge {
    left: 0;
    right: auto;
    bottom: 6%;
    width: min(215px, 64%);
  }
  .trust-grid,
  .grid-2,
  .grid-3,
  .desert-route-cards,
  .transfer-support-grid,
  .feature-tiles,
  .route-list,
  .footer-grid,
  .info-grid,
  .calc-controls,
  .form-grid,
  .calc-extras {
    grid-template-columns: 1fr;
  }
  .grid-3 > .card:nth-child(3n + 2) {
    transform: none;
  }
  .grid-3 > .card:nth-child(3n + 2):hover {
    transform: translateY(-8px);
  }
  .desert-route-card {
    min-height: auto;
  }
  .tour-highlights-copy .section-rule {
    max-width: 100%;
  }
  .highlight-row:hover {
    transform: none;
  }
  .split-image img { min-height: 330px; }
  .modal-overlay { padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress span,
  .scroll-progress span::after,
  .scroll-progress.is-moving span,
  .hero::after,
  .hero-panel::before,
  .hero-photo,
  .journey-track,
  .reveal,
  .premium-motion body,
  .premium-motion .site-header,
  .premium-motion .hero-panel > *,
  .premium-motion .page-hero .container > *,
  .premium-motion .tour-detail-hero-copy > *,
  .premium-motion .section-header.reveal.is-visible .section-rule,
  .premium-motion .reveal.is-visible .section-rule {
    animation: none;
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Home redesign inspired by the provided premium editorial references. */
.home-page {
  background: #f4efe4;
}
.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--white);
}
.home-page .site-header::after {
  display: none;
}
.home-page .site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(36, 27, 24, .78), rgba(36, 27, 24, .56));
  box-shadow: 0 18px 52px rgba(36, 27, 24, .24);
  color: var(--white);
  backdrop-filter: blur(24px) saturate(140%);
}
.home-page .nav-wrap {
  min-height: 104px;
  width: min(calc(100% - 48px), 1380px);
}
.home-page .site-header .logo {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  justify-content: flex-start;
  gap: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 241, .22);
  border: 1px solid rgba(255, 250, 241, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 16px 34px rgba(0, 0, 0, .1);
  backdrop-filter: blur(12px);
}
.home-page .site-header.is-scrolled .logo {
  background: rgba(255, 250, 241, .22);
  border-color: rgba(255, 250, 241, .28);
}
.home-page .site-header .logo-img {
  width: 210px;
  height: 68px;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 232, .35))
    drop-shadow(0 12px 20px rgba(0, 0, 0, .36));
}
.home-page .nav {
  border-color: rgba(255, 248, 232, .22);
  background: rgba(36, 27, 24, .28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 18px 42px rgba(0,0,0,.12);
  backdrop-filter: blur(18px);
}
.home-page .site-header.is-scrolled .nav {
  border-color: rgba(255, 248, 232, .28);
  background: rgba(36, 27, 24, .35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.19), 0 16px 40px rgba(0,0,0,.15);
}
.home-page .nav > a,
.home-page .dropdown-toggle {
  color: inherit;
  font-size: .8rem;
  letter-spacing: .02em;
}
.home-page .nav > a:hover,
.home-page .dropdown-toggle:hover,
.home-page .dropdown-toggle[data-current="page"],
.home-page .nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 248, 232, .16);
}
.home-page .site-header.is-scrolled .nav > a:hover,
.home-page .site-header.is-scrolled .dropdown-toggle:hover,
.home-page .site-header.is-scrolled .dropdown-toggle[data-current="page"],
.home-page .site-header.is-scrolled .nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 248, 232, .16);
}
.home-page .dropdown-menu a[aria-current="page"],
.site-header .dropdown-menu a[aria-current="page"] {
  color: #6d071b !important;
  background: linear-gradient(90deg, rgba(217, 163, 59, .24), rgba(255, 241, 207, .82)) !important;
}
.home-page .nav-cta {
  background: rgba(90, 7, 24, .94) !important;
  color: var(--white) !important;
  box-shadow: 0 14px 34px rgba(90, 7, 24, .28);
}
.home-page .home-hero {
  min-height: clamp(760px, 100svh, 980px);
  padding-top: 104px;
  padding-bottom: 126px;
  align-items: center;
  background-position: center;
}
.home-page .home-hero::before {
  background:
    radial-gradient(circle at 70% 45%, rgba(217,163,59,.12), transparent 32%),
    linear-gradient(90deg, rgba(19, 14, 12, .8), rgba(45, 25, 23, .46) 48%, rgba(19, 14, 12, .28)),
    linear-gradient(0deg, rgba(19, 14, 12, .68), rgba(19, 14, 12, .08) 54%, rgba(19, 14, 12, .36));
}
.home-page .home-hero::after {
  background:
    linear-gradient(90deg, rgba(255,248,232,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,248,232,.08) 1px, transparent 1px);
  background-size: 13vw 13vw;
  opacity: .34;
  animation: none;
}
.home-page .page-hero {
  min-height: clamp(520px, 61svh, 650px);
  padding-top: 104px;
  padding-bottom: 0;
  align-items: center;
  background-position: center;
}
.home-page .page-hero::before {
  background:
    radial-gradient(circle at 72% 40%, rgba(217,163,59,.12), transparent 34%),
    linear-gradient(90deg, rgba(19, 14, 12, .8), rgba(45, 25, 23, .48) 48%, rgba(19, 14, 12, .3)),
    linear-gradient(0deg, rgba(19, 14, 12, .68), rgba(19, 14, 12, .08) 54%, rgba(19, 14, 12, .36));
}
.home-page .page-hero::after {
  background:
    linear-gradient(90deg, rgba(255,248,232,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,248,232,.08) 1px, transparent 1px);
  background-size: 13vw 13vw;
  opacity: .34;
  animation: none;
}
.home-page .page-hero .hero-content {
  min-height: clamp(330px, calc(61svh - 170px), 455px);
  align-items: end;
  padding: clamp(3.1rem, 5.8vw, 5rem) 0 clamp(2rem, 3.5vw, 2.8rem);
}
.home-page .page-hero .hero-panel {
  transform: translateY(-10px);
}
.home-page .hero-content {
  min-height: clamp(520px, calc(100svh - 260px), 680px);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
}
.home-page .hero-panel {
  width: min(100%, 880px);
  padding-left: 0;
  align-self: end;
  transform: translateY(-34px);
}
.home-page .hero-panel::before {
  display: none;
}
.home-page .hero-panel .kicker {
  color: rgba(255, 248, 232, .8);
  letter-spacing: .22em;
  font-size: .72rem;
}
.home-page .hero-panel h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(3.7rem, 6.9vw, 7.7rem);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}
.home-page .page-hero .hero-panel h1 {
  font-size: clamp(3.15rem, 6.1vw, 6.45rem);
  line-height: .97;
}
.marrakech-page .page-hero,
.casablanca-page .page-hero,
.fes-page .page-hero {
  min-height: clamp(500px, 58svh, 620px);
}
.marrakech-page .page-hero::before,
.casablanca-page .page-hero::before,
.fes-page .page-hero::before {
  background:
    radial-gradient(circle at 72% 40%, rgba(217,163,59,.16), transparent 36%),
    linear-gradient(90deg, rgba(19, 14, 12, .68), rgba(45, 25, 23, .36) 48%, rgba(19, 14, 12, .18)),
    linear-gradient(0deg, rgba(19, 14, 12, .52), rgba(19, 14, 12, .04) 54%, rgba(19, 14, 12, .28));
}
.marrakech-page .trust-strip,
.casablanca-page .trust-strip,
.fes-page .trust-strip {
  background:
    linear-gradient(135deg, rgba(45, 28, 23, .95), rgba(26, 19, 17, .94));
  border-block-color: rgba(217, 163, 59, .18);
}
.marrakech-page .trust-grid,
.casablanca-page .trust-grid,
.fes-page .trust-grid {
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(217,163,59,.12), rgba(255,255,255,.08));
}
.marrakech-page .trust-item,
.casablanca-page .trust-item,
.fes-page .trust-item {
  min-height: 96px;
  padding: 1rem 1.35rem;
}
.marrakech-page .trust-item strong,
.casablanca-page .trust-item strong,
.fes-page .trust-item strong {
  font-size: 1rem;
}
.marrakech-page .trust-item span,
.casablanca-page .trust-item span,
.fes-page .trust-item span {
  font-size: .96rem;
  line-height: 1.45;
}
.home-page .hero-panel p {
  width: min(100%, 590px);
  margin-top: 1.35rem;
  color: rgba(255, 248, 232, .78);
  font-size: 1.05rem;
}
.home-page .hero-actions {
  margin-top: 1.6rem;
}
.home-page .btn {
  min-height: 50px;
  border-radius: 999px;
  padding-inline: 1.35rem;
}
.home-page .btn-primary {
  background: #f4efe4;
  color: var(--forest);
  border-color: #f4efe4;
}
.home-page .btn-outline {
  background: rgba(255, 248, 232, .1);
  border-color: rgba(255, 248, 232, .42);
}
.home-feature-card {
  align-self: end;
  display: grid;
  gap: 1rem;
  padding: .72rem;
  color: var(--white);
  background: rgba(255, 248, 232, .1);
  border: 1px solid rgba(255, 248, 232, .28);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
}
.home-feature-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
}
.home-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transition: transform .8s ease;
}
.home-feature-card:hover img {
  transform: scale(1.05);
}
.home-feature-card span {
  display: block;
  color: rgba(255, 248, 232, .66);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-feature-card h3 {
  margin-top: .2rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}
.home-feature-card p {
  margin-top: .45rem;
  color: rgba(255, 248, 232, .72);
  font-size: .93rem;
}
.home-booking-panel {
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr auto;
  gap: 1px;
  padding: .42rem;
  color: var(--ink);
  background: rgba(255, 248, 232, .86);
  border: 1px solid rgba(255, 248, 232, .56);
  border-radius: 8px;
  box-shadow: 0 20px 62px rgba(0,0,0,.22);
  backdrop-filter: blur(20px);
}
.home-booking-panel > div {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: .12rem;
  padding: .58rem 1rem;
  background: rgba(255,255,255,.44);
}
.home-booking-panel span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-booking-panel strong {
  font-size: .92rem;
}
.home-booking-panel .btn {
  align-self: stretch;
  min-height: 62px;
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.home-page .floating-whatsapp {
  right: 26px;
  bottom: 44px;
  width: 46px;
  height: 46px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 248, 232, .66), transparent 34%),
    linear-gradient(145deg, #e1ac3c 0%, #bd7d21 100%);
  color: #5a0718;
  border: 1px solid rgba(90, 7, 24, .35);
  box-shadow: 0 14px 34px rgba(90, 7, 24, .15), 0 6px 20px rgba(217, 159, 47, .24);
  backdrop-filter: blur(10px);
}
.home-page .back-to-top {
  right: 26px;
  bottom: 116px;
  width: 35px;
  height: 35px;
  font-size: .82rem;
  background: rgba(36, 27, 24, .78);
  box-shadow: 0 10px 28px rgba(36, 27, 24, .14);
}
.home-page .journey-ribbon {
  display: none;
}
.home-page .trust-strip {
  background: rgba(22, 15, 13, .95);
}
.home-page .trust-grid {
  background: transparent;
}
.home-page .trust-item {
  min-height: 88px;
  border-left: 1px solid rgba(255,248,232,.12);
  background: transparent;
  padding-block: .85rem;
}
.home-page .section {
  background: #f4efe4;
}
.home-page .page-hero + .section {
  padding-top: clamp(2.4rem, 4.5vw, 4rem);
}
.home-page .tour-categories-section {
  padding-bottom: clamp(2.1rem, 3.8vw, 3.4rem);
}
.home-page .section::before {
  display: none;
}
.home-page .travel-services {
  background: #f4efe4;
  padding-top: clamp(2rem, 3.8vw, 3.8rem);
  padding-bottom: clamp(2.2rem, 4vw, 4rem);
}
.home-page .services-layout {
  grid-template-columns: .72fr 1fr;
  align-items: start;
}
.home-page .services-intro h2,
.home-page .section-header h2,
.home-page .cta h2 {
  color: #201715;
  font-size: clamp(2.35rem, 5.2vw, 5.9rem);
  line-height: .9;
}
.home-page .services-grid {
  border-top-color: rgba(36,27,24,.18);
}
.home-page .service-item {
  grid-template-columns: 54px 1fr;
  padding: 1.55rem 0;
  border-bottom-color: rgba(36,27,24,.18);
}
.home-page .service-item:hover {
  padding-left: 0;
  transform: none;
  background: transparent;
}
.home-page .service-index {
  color: var(--forest);
  font-size: 1rem;
}
.home-page .section.alt {
  background: #fffaf0;
}
.home-page .popular-section {
  padding-top: clamp(2.6rem, 4.4vw, 4.5rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.8rem);
}
.home-page .popular-section .container {
  max-width: 1300px;
}
.home-page .section-header {
  margin-bottom: 3rem;
}
.home-page .section-rule {
  width: 100%;
  max-width: 420px;
  height: 1px;
  background: rgba(36,27,24,.24);
  box-shadow: none;
}
.home-page .card {
  border-color: rgba(36,27,24,.16);
  box-shadow: none;
  background: #fffaf0;
}
.home-page .popular-section .card {
  background: rgba(255, 250, 240, .76);
  border-color: rgba(36, 27, 24, .13);
  box-shadow: 0 18px 58px rgba(36, 27, 24, .08);
  backdrop-filter: blur(10px);
}
.home-page .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(36,27,24,.12);
}
.home-page .popular-section .card:hover {
  border-color: rgba(217, 163, 59, .42);
  box-shadow: 0 26px 80px rgba(36, 27, 24, .16);
}
.home-page .grid-3 > .card:nth-child(3n + 2) {
  transform: none;
}
.home-page .grid-3 > .card:nth-child(3n + 2):hover {
  transform: translateY(-6px);
}
.home-page .tour-card .media-frame,
.home-page .destination-card .media-frame {
  aspect-ratio: 5 / 6;
}
.home-page .popular-section .tour-card .media-frame {
  aspect-ratio: 7 / 6;
}
.home-page .popular-section .media-frame::after {
  background: linear-gradient(180deg, transparent 48%, rgba(36, 27, 24, .18));
}
.home-page .card-body {
  padding: 1.15rem;
}
.home-page .popular-section .card-body {
  padding: 1.25rem 1.25rem 1.35rem;
  gap: .78rem;
}
.home-page .popular-section .card-body h3 {
  font-size: clamp(1.24rem, 1.55vw, 1.56rem);
  line-height: 1.02;
}
.home-page .popular-section .card-body p {
  line-height: 1.42;
}
.home-page .popular-section .card-actions {
  margin-top: .15rem;
}
.home-page .popular-section .btn {
  min-height: 46px;
  padding: .8rem 1.22rem;
}
.home-page .popular-section .section-more {
  margin-top: 2.25rem;
}
.home-page .tour-card {
  background: rgba(255, 250, 240, .76);
  border-color: rgba(36, 27, 24, .13);
  box-shadow: 0 18px 58px rgba(36, 27, 24, .08);
  backdrop-filter: blur(10px);
}
.home-page .tour-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 163, 59, .42);
  box-shadow: 0 26px 80px rgba(36, 27, 24, .16);
}
.home-page .grid-3 > .tour-card:nth-child(3n + 2) {
  transform: none;
}
.home-page .grid-3 > .tour-card:nth-child(3n + 2):hover {
  transform: translateY(-6px);
}
.home-page .tour-card .media-frame {
  aspect-ratio: 7 / 6;
}
.home-page .tour-card .media-frame::after {
  background: linear-gradient(180deg, transparent 48%, rgba(36, 27, 24, .18));
}
.home-page .tour-card .card-body {
  padding: 1.25rem 1.25rem 1.35rem;
  gap: .78rem;
}
.home-page .tour-card .card-body h3,
.home-page .tour-card.collection-card .card-body h3 {
  font-size: clamp(1.24rem, 1.55vw, 1.56rem);
  line-height: 1.02;
}
.home-page .tour-card .card-body p {
  line-height: 1.42;
}
.home-page .tour-card .card-actions {
  margin-top: .15rem;
}
.home-page .tour-card .btn {
  min-height: 46px;
  padding: .8rem 1.22rem;
}
.tour-card .card-actions .btn {
  min-width: 118px;
}
.tour-card .card-actions .btn-ghost {
  border-color: rgba(234, 217, 184, .86);
  background: rgba(255, 250, 241, .92);
  color: var(--forest);
  box-shadow: 0 12px 26px rgba(36, 27, 24, .07);
}
.tour-card .card-actions .btn-ghost:hover {
  color: var(--forest);
  border-color: rgba(217, 163, 59, .48);
  background: rgba(255, 248, 232, 1);
  box-shadow: 0 16px 34px rgba(36, 27, 24, .11);
}
.tour-card .card-actions .btn-ghost::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
}
.tour-list-section {
  padding-top: clamp(3.4rem, 4.7vw, 4.7rem);
  padding-bottom: clamp(1.45rem, 2.2vw, 2.15rem);
  scroll-margin-top: 150px;
}
.tour-list-section .section-header {
  margin-bottom: 1.35rem;
}
.tour-list-section .tour-filter-row {
  margin-bottom: 1.15rem;
}
.tour-list-section .grid {
  gap: clamp(1rem, 1.8vw, 1.3rem);
}
.tour-list-section .tour-card {
  min-height: auto;
  scroll-margin-top: 170px;
}
.tour-list-section .tour-card .media-frame {
  aspect-ratio: 16 / 9;
}
.tour-list-section .tour-card .card-body {
  padding: 1.05rem 1.15rem 1.15rem;
  gap: .66rem;
}
.tour-list-section .tour-card .card-body h3 {
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  line-height: 1.04;
  text-wrap: balance;
}
.marrakech-page .tour-list-section .tour-card:nth-child(3) .card-body h3 {
  font-size: clamp(1.05rem, 1.28vw, 1.26rem);
}
.tour-list-section .tour-card .card-body p {
  line-height: 1.4;
}
.tour-list-section .tour-price,
.tour-list-section .tour-card .card-actions {
  margin-top: .05rem;
}
.marrakech-page .tour-list-section + .desert-route-section,
.casablanca-page .tour-list-section + .desert-route-section,
.fes-page .tour-list-section + .desert-route-section {
  padding-top: clamp(1.35rem, 2vw, 2rem);
  padding-bottom: clamp(1.55rem, 2.4vw, 2.35rem);
}

.marrakech-page .desert-route-section .container,
.casablanca-page .desert-route-section .container,
.fes-page .desert-route-section .container {
  max-width: 1320px;
}

.marrakech-page .desert-route-section .section-header,
.casablanca-page .desert-route-section .section-header,
.fes-page .desert-route-section .section-header {
  max-width: 760px;
  margin-bottom: 0;
}

.marrakech-page .desert-route-section .section-header h2,
.casablanca-page .desert-route-section .section-header h2,
.fes-page .desert-route-section .section-header h2 {
  font-size: clamp(3rem, 5.7vw, 4.9rem);
}

.marrakech-page .desert-route-section .section-header p,
.casablanca-page .desert-route-section .section-header p,
.fes-page .desert-route-section .section-header p {
  max-width: 720px;
}

.marrakech-page .desert-route-cards,
.casablanca-page .desert-route-cards,
.fes-page .desert-route-cards {
  margin-top: clamp(1rem, 1.4vw, 1.35rem);
  gap: clamp(.9rem, 1.5vw, 1.25rem);
}

.marrakech-page .desert-route-card,
.casablanca-page .desert-route-card,
.fes-page .desert-route-card {
  min-height: 145px;
  padding: clamp(1rem, 1.35vw, 1.25rem);
}

.marrakech-page .desert-route-card h3,
.casablanca-page .desert-route-card h3,
.fes-page .desert-route-card h3 {
  margin-bottom: .42rem;
  font-size: clamp(1.16rem, 1.38vw, 1.38rem);
}

.marrakech-page .desert-route-card p,
.casablanca-page .desert-route-card p,
.fes-page .desert-route-card p {
  line-height: 1.36;
}

.marrakech-page .tour-highlights-section,
.casablanca-page .tour-highlights-section,
.fes-page .tour-highlights-section {
  padding-top: clamp(1.45rem, 2.3vw, 2.2rem);
  padding-bottom: clamp(2rem, 3.2vw, 3.1rem);
}

.marrakech-page .tour-highlights-layout,
.casablanca-page .tour-highlights-layout,
.fes-page .tour-highlights-layout {
  align-items: start;
  gap: clamp(1.7rem, 3.4vw, 3.5rem);
}

.marrakech-page .tour-highlights-copy p,
.casablanca-page .tour-highlights-copy p,
.fes-page .tour-highlights-copy p {
  margin-top: .55rem;
}

.marrakech-page .tour-highlights-copy .section-rule,
.casablanca-page .tour-highlights-copy .section-rule,
.fes-page .tour-highlights-copy .section-rule {
  margin-top: 1rem;
}

.marrakech-page .highlight-list,
.casablanca-page .highlight-list,
.fes-page .highlight-list {
  margin-top: clamp(1rem, 1.5vw, 1.4rem);
  gap: .68rem;
}

.marrakech-page .highlight-row,
.casablanca-page .highlight-row,
.fes-page .highlight-row {
  padding: .82rem 1rem;
  line-height: 1.28;
}

.marrakech-page .tour-highlights-image img,
.casablanca-page .tour-highlights-image img,
.fes-page .tour-highlights-image img {
  aspect-ratio: 16 / 10;
  max-height: 390px;
  object-position: center 56%;
}

.marrakech-page .tour-highlights-section + .cta,
.casablanca-page main .cta,
.fes-page main .cta {
  padding-top: clamp(2rem, 3vw, 3rem);
}

.marrakech-page .tour-highlights-section + .cta .container,
.casablanca-page main .cta .container,
.fes-page main .cta .container {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .46fr);
  gap: clamp(1.2rem, 2.8vw, 3rem);
  align-items: center;
}

.marrakech-page .tour-highlights-section + .cta h2,
.casablanca-page main .cta h2,
.fes-page main .cta h2 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.7vw, 5.8rem);
  line-height: .94;
}

.marrakech-page .tour-highlights-section + .cta p,
.casablanca-page main .cta p,
.fes-page main .cta p {
  max-width: 620px;
}

.marrakech-page .tour-highlights-section + .cta .cta-actions,
.casablanca-page main .cta .cta-actions,
.fes-page main .cta .cta-actions {
  justify-self: start;
  justify-content: flex-end;
}

.home-page .destinations-section {
  padding-top: clamp(3.2rem, 5.2vw, 5.2rem);
  padding-bottom: clamp(3rem, 4.6vw, 4.6rem);
}
.home-page .destinations-section .container {
  max-width: 1300px;
}
.home-page .destinations-section .section-header {
  margin-bottom: 2.45rem;
}
.home-page .destinations-section .card {
  background: rgba(255, 250, 240, .82);
  border-color: rgba(36, 27, 24, .13);
  box-shadow: 0 18px 58px rgba(36, 27, 24, .075);
}
.home-page .destinations-section .card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 163, 59, .38);
  box-shadow: 0 26px 78px rgba(36, 27, 24, .14);
}
.home-page .destinations-section .destination-card .media-frame {
  aspect-ratio: 5 / 4;
}
.home-page .destinations-section .media-frame::after {
  background: linear-gradient(180deg, transparent 55%, rgba(36, 27, 24, .16));
}
.home-page .destinations-section .card-body {
  min-height: 116px;
  padding: 1rem 1.15rem 1.2rem;
  gap: .55rem;
}
.home-page .destinations-section .card-body h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.48rem);
  line-height: 1.05;
}
.home-page .destinations-section .card-body p {
  line-height: 1.42;
}
.home-page .split {
  align-items: center;
}
.home-page .why-section {
  padding-top: clamp(3rem, 4.8vw, 5rem);
  padding-bottom: clamp(2.6rem, 4.2vw, 4.4rem);
}
.home-page .why-section .split {
  grid-template-columns: .72fr 1fr;
  gap: clamp(2.4rem, 5vw, 5.2rem);
  align-items: start;
}
.home-page .why-section .split > div:first-child {
  max-width: 620px;
}
.home-page .why-section .section-header {
  margin-bottom: 0;
}
.home-page .why-section .section-header h2 {
  font-size: clamp(2.25rem, 4.85vw, 5.45rem);
  line-height: .92;
  text-wrap: balance;
}
.home-page .why-section .section-header p {
  max-width: 36rem;
}
.home-page .why-section .section-rule {
  max-width: 100%;
  margin-top: 1.45rem;
}
.home-page .why-details {
  display: grid;
  gap: 1.35rem;
}
.home-page .why-media {
  width: min(100%, 620px);
  justify-self: end;
}
.home-page .why-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  box-shadow: 0 24px 74px rgba(36, 27, 24, .13);
}
.home-page .why-section .stack {
  gap: 0;
  border-top: 1px solid rgba(36, 27, 24, .16);
  margin-top: 0;
}
.home-page .why-section .why-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  column-gap: clamp(1.6rem, 3vw, 2.6rem);
}
.home-page .why-section .mini-feature {
  padding: 1.28rem 0;
  border: 0;
  border-bottom: 1px solid rgba(36, 27, 24, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.home-page .why-section .mini-feature:hover {
  transform: none;
  background: transparent;
}
.home-page .why-section .mini-feature strong {
  display: block;
  margin-bottom: .28rem;
  color: #201715;
}
.home-page .why-section .mini-feature p {
  max-width: 42rem;
}
.home-page .about-service-section {
  padding-top: clamp(2.25rem, 3.6vw, 3.8rem);
  padding-bottom: clamp(2.25rem, 3.6vw, 3.8rem);
  scroll-margin-top: 8.5rem;
}
.home-page .about-service-section-alt {
  background:
    linear-gradient(90deg, rgba(255, 248, 232, .75), rgba(255, 241, 207, .42)),
    var(--paper);
}
.home-page .about-service-layout {
  grid-template-columns: .86fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.2rem);
}
.home-page .about-service-layout-reverse .about-service-copy {
  order: 2;
}
.home-page .about-service-layout-reverse .about-service-media {
  order: 1;
}
.home-page .about-service-copy h2 {
  font-size: clamp(2.25rem, 4.25vw, 4.75rem);
  line-height: .94;
  text-wrap: balance;
}
.home-page .about-service-copy p {
  max-width: 42rem;
}
.home-page .about-service-copy .section-rule {
  max-width: 100%;
  margin: 1.05rem 0 1rem;
}
.home-page .about-service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.55rem);
  margin-bottom: 1.05rem;
}
.home-page .about-service-points .mini-feature {
  padding: 0 0 .75rem;
  border: 0;
  border-bottom: 1px solid rgba(36, 27, 24, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.home-page .about-service-points .mini-feature:hover {
  transform: none;
  background: transparent;
}
.home-page .about-service-points .mini-feature strong {
  display: block;
  margin-bottom: .25rem;
  color: #201715;
}
.home-page .about-service-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 74px rgba(36, 27, 24, .13);
}
.home-page .reviews-band {
  background: #201715;
  color: var(--white);
  padding-top: clamp(3.4rem, 5.5vw, 5.5rem);
  padding-bottom: clamp(3.4rem, 5.5vw, 5.5rem);
}
.home-page .reviews-band .section-header {
  margin-bottom: 2rem;
}
.home-page .reviews-band .section-header h2 {
  font-size: clamp(2.35rem, 5.2vw, 5.9rem);
  line-height: .9;
}
.home-page .reviews-band h2,
.home-page .reviews-band .review-card blockquote {
  color: var(--white);
}
.home-page .reviews-band p,
.home-page .reviews-band .review-card p {
  color: rgba(255,248,232,.68);
}
.home-page .reviews-band .card {
  background: rgba(255,248,232,.08);
  border-color: rgba(255,248,232,.14);
}
.home-page .reviews-band .card-body {
  padding: 1.05rem 1.08rem 1.15rem;
  gap: .72rem;
  height: 100%;
}
.home-page .reviews-band .stars {
  display: none;
}
.home-page .reviews-band .review-card blockquote {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .98rem;
  line-height: 1.48;
}
.home-page .reviews-band .review-card cite {
  margin-top: auto;
}
.home-page .reviews-band .mt-32 {
  margin-top: 2.2rem;
}
.home-page .cta {
  background: #f4efe4;
  color: var(--ink);
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid rgba(217, 163, 59, .24);
}
.home-page .cta::after {
  display: none;
}
.home-page .cta .container {
  grid-template-columns: minmax(0, .9fr) minmax(280px, .46fr);
  gap: clamp(1.2rem, 2.8vw, 3rem);
  align-items: center;
}
.home-page .cta h2 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.7vw, 5.8rem);
  line-height: .94;
}
.home-page .cta p {
  color: var(--muted);
  max-width: 620px;
}
.home-page .cta-actions {
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .72rem;
}
.home-page .cta-actions .btn {
  min-height: 48px;
}
.marrakech-page .tour-highlights-section + .cta .cta-actions,
.casablanca-page main .cta .cta-actions,
.fes-page main .cta .cta-actions {
  flex-wrap: nowrap;
}
.marrakech-page .tour-highlights-section + .cta .cta-actions .btn,
.casablanca-page main .cta .cta-actions .btn,
.fes-page main .cta .cta-actions .btn {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .home-page .site-header {
    background: rgba(255, 248, 232, .9);
    color: var(--ink);
  }
  .home-page .nav {
    background: #fff8e8;
    color: var(--ink);
  }
  .home-page .home-hero {
    padding-bottom: 1.2rem;
  }
  .home-page .hero-content,
  .home-page .services-layout,
  .home-page .why-section .split,
  .home-page .about-service-layout,
  .home-page .cta .container {
    grid-template-columns: 1fr;
  }
  .home-page .about-service-layout-reverse .about-service-copy,
  .home-page .about-service-layout-reverse .about-service-media {
    order: initial;
  }
  .home-page .about-service-points {
    grid-template-columns: 1fr;
    gap: .4rem;
  }
  .home-page .cta-actions {
    justify-self: start;
  }
  .marrakech-page .tour-highlights-section + .cta .cta-actions,
  .casablanca-page main .cta .cta-actions,
  .fes-page main .cta .cta-actions {
    flex-wrap: wrap;
  }
  .tour-detail-layout,
  .detail-two-col {
    grid-template-columns: 1fr;
  }
  .tour-detail-sidebar {
    position: static;
  }
  .tour-detail-meta-strip {
    margin-top: 0;
  }
  .tour-detail-meta-strip .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-page .why-section .why-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
  .home-feature-card {
    max-width: 420px;
  }
  .home-booking-panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: -1rem;
    grid-template-columns: 1fr 1fr;
  }
  .home-booking-panel .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .home-page .nav-wrap {
    min-height: 84px;
    width: min(calc(100% - 32px), var(--max));
  }
  .home-page .site-header .logo {
    padding: 4px 6px;
    gap: 0;
  }
  .home-page .site-header .logo-img {
    width: 148px;
    height: 50px;
    object-fit: cover;
  }
  .home-page .home-hero {
    min-height: auto;
    padding-top: 84px;
  }
  .home-page .floating-whatsapp {
    display: none;
  }
  .home-page .hero-content {
    min-height: auto;
    padding: 4rem 0 1.4rem;
  }
  .home-page .why-section .section-header h2 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }
  .home-page .hero-panel {
    transform: translateY(-18px);
  }
  .home-page .hero-panel h1 {
    font-size: clamp(3.15rem, 15.5vw, 4.8rem);
    line-height: .94;
  }
  .home-page .hero-panel p {
    font-size: 1rem;
  }
  .home-feature-card {
    display: none;
  }
  .home-booking-panel {
    grid-template-columns: 1fr;
  }
  .home-booking-panel > div,
  .home-booking-panel .btn {
    min-height: 62px;
  }
  .home-page .services-intro h2,
  .home-page .section-header h2,
  .home-page .cta h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }
  .tour-detail-hero {
    min-height: 540px;
  }
  .tour-detail-hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }
  .tour-detail-meta-strip .info-grid,
  .price-calc-grid {
    grid-template-columns: 1fr;
  }
  .timeline-segment {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RTL SUPPORT FOR ARABIC (html[dir="rtl"])
   ============================================================ */

html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* Navigation */
html[dir="rtl"] .nav-wrap {
  flex-direction: row-reverse;
}
html[dir="rtl"] .nav {
  flex-direction: row-reverse;
}
html[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}
html[dir="rtl"] .menu-toggle {
  margin-right: auto;
  margin-left: 0;
}

/* Logo */
html[dir="rtl"] .logo {
  margin-left: auto;
  margin-right: 0;
}

/* Footer grid */
html[dir="rtl"] .footer-links {
  text-align: right;
}

/* Buttons with icons */
html[dir="rtl"] .btn svg {
  margin-right: 0;
  margin-left: 0.4em;
}

/* Journey ribbon - reverse scroll direction */
html[dir="rtl"] .journey-track {
  animation-direction: reverse;
}

/* Trust strip */
html[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
  text-align: right;
}

/* Services layout */
html[dir="rtl"] .services-layout {
  flex-direction: row-reverse;
}
html[dir="rtl"] .service-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .service-index {
  margin-right: 0;
  margin-left: 1rem;
}

/* Section header */
html[dir="rtl"] .section-header.align-left {
  text-align: right;
}
html[dir="rtl"] .section-rule {
  margin-left: auto;
  margin-right: 0;
}

/* Split layout */
html[dir="rtl"] .about-service-layout {
  flex-direction: row-reverse;
}
html[dir="rtl"] .about-service-layout-reverse {
  flex-direction: row;
}

/* Highlight list */
html[dir="rtl"] .highlight-row span:first-child {
  margin-right: 0;
  margin-left: 0.5rem;
}
html[dir="rtl"] .highlight-list {
  text-align: right;
}

/* Cards */
html[dir="rtl"] .card-body {
  text-align: right;
}
html[dir="rtl"] .meta-row {
  justify-content: flex-end;
}
html[dir="rtl"] .card-actions {
  justify-content: flex-end;
}

/* Tour filter row */
html[dir="rtl"] .tour-filter-row {
  flex-direction: row-reverse;
}

/* Contact form */
html[dir="rtl"] .form-field label {
  text-align: right;
}
html[dir="rtl"] .form-grid {
  direction: rtl;
}

/* Contact layout */
html[dir="rtl"] .contact-layout {
  flex-direction: row-reverse;
}

/* FAQ */
html[dir="rtl"] .faq-question {
  flex-direction: row-reverse;
}
html[dir="rtl"] .faq-question span:last-child {
  margin-right: 0;
  margin-left: auto;
}
html[dir="rtl"] .faq-answer {
  text-align: right;
}

/* Tour detail page */
html[dir="rtl"] .tour-detail-layout {
  flex-direction: row-reverse;
}
html[dir="rtl"] .tour-detail-hero-copy {
  text-align: right;
}
html[dir="rtl"] .tour-detail-back {
  text-align: right;
}
html[dir="rtl"] .tour-detail-back::before {
  content: "›";
  margin-left: 0.3em;
  margin-right: 0;
}
html[dir="rtl"] .tour-detail-back::after {
  display: none;
}
html[dir="rtl"] .detail-section {
  text-align: right;
}
html[dir="rtl"] .detail-list li {
  text-align: right;
}
html[dir="rtl"] .summary-row {
  flex-direction: row-reverse;
}
html[dir="rtl"] .info-grid {
  text-align: right;
}
html[dir="rtl"] .itinerary-day {
  text-align: right;
}
html[dir="rtl"] .day-label {
  text-align: right;
}
html[dir="rtl"] .timeline-segment {
  direction: rtl;
}

/* Desert route cards */
html[dir="rtl"] .desert-route-card {
  text-align: right;
}

/* Hero panel */
html[dir="rtl"] .hero-panel {
  text-align: right;
}
html[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}

/* Floating WhatsApp button */
html[dir="rtl"] .floating-whatsapp {
  left: 1.5rem;
  right: auto;
}

/* Back to top */
html[dir="rtl"] .back-to-top {
  left: 1.5rem;
  right: auto;
}

/* Price calculator */
html[dir="rtl"] .price-calc-extras {
  text-align: right;
}
html[dir="rtl"] .extra-option {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Language switcher dropdown */
html[dir="rtl"] .lang-switcher {
  direction: rtl;
}
html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

/* ============================================================
   TOUR DETAIL PAGE POLISH
   ============================================================ */
.tour-detail-page main {
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 163, 59, .12), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 232, .96) 0%, rgba(250, 241, 222, .96) 48%, rgba(255, 248, 232, .98) 100%);
}

.tour-detail-page .site-header {
  background: linear-gradient(180deg, rgba(36, 27, 24, .58), rgba(36, 27, 24, .36));
  border-bottom-color: rgba(255, 248, 232, .18);
}

.tour-detail-hero {
  min-height: clamp(560px, 68vh, 760px);
  align-items: center;
  background-position: center;
}

.tour-detail-hero::before {
  background:
    linear-gradient(90deg, rgba(22, 16, 14, .86), rgba(36, 27, 24, .58) 48%, rgba(36, 27, 24, .24)),
    linear-gradient(180deg, rgba(36, 27, 24, .22), rgba(36, 27, 24, .72)),
    radial-gradient(circle at 18% 40%, rgba(217, 163, 59, .18), transparent 34%);
}

.tour-detail-hero .container {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(3.4rem, 6vw, 5rem);
}

.tour-detail-back {
  width: fit-content;
  min-height: 42px;
  align-items: center;
  gap: .5rem;
  margin-bottom: clamp(1.1rem, 2vw, 1.6rem);
  padding: .58rem .86rem;
  border: 1px solid rgba(255, 248, 232, .28);
  border-radius: 999px;
  background: rgba(255, 248, 232, .1);
  color: rgba(255, 248, 232, .94);
  backdrop-filter: blur(14px);
}

.tour-detail-back::before {
  content: "<";
  color: var(--gold);
  font-weight: 900;
}

.tour-detail-hero-copy {
  width: min(860px, 100%);
  gap: 1.05rem;
}

.tour-detail-hero-copy h1 {
  max-width: 850px;
  font-size: clamp(3.15rem, 6vw, 6.4rem);
  line-height: .94;
  text-wrap: balance;
}

.tour-detail-hero-copy p {
  width: min(720px, 100%);
  color: rgba(255, 248, 232, .9);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.tour-detail-hero .kicker {
  width: fit-content;
  padding: .42rem .68rem;
  border-radius: 999px;
  background: rgba(217, 163, 59, .16);
  color: #ffdf89;
  letter-spacing: .14em;
}

.detail-hero-actions {
  gap: .7rem;
  margin-top: .55rem;
}

.detail-hero-actions .btn {
  min-height: 52px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.tour-detail-meta-strip {
  margin-top: -42px;
}

.tour-detail-meta-strip .container {
  width: min(calc(100% - 32px), 1240px);
}

.tour-detail-meta-strip .info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  padding: .9rem;
  border-radius: 8px;
  background: rgba(255, 250, 240, .96);
  border: 1px solid rgba(217, 163, 59, .34);
  box-shadow: 0 24px 70px rgba(36, 27, 24, .14);
  backdrop-filter: blur(12px);
}

.tour-detail-meta-strip .info-item {
  min-height: 58px;
  display: block;
  padding: .78rem .95rem;
  border-radius: 6px;
  border: 1px solid rgba(217, 163, 59, .2);
  background: linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 248, 232, .76));
  color: #2e231f;
  font-weight: 850;
  line-height: 1.55;
}

.tour-detail-meta-strip .info-item span:first-child {
  color: var(--forest);
  font-weight: 900;
}

.tour-detail-content-section {
  padding-top: clamp(3.4rem, 5.5vw, 5.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.tour-detail-layout {
  width: min(100%, 1240px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.tour-detail-main {
  gap: clamp(1rem, 2vw, 1.35rem);
}

.tour-detail-sidebar {
  gap: 1rem;
  top: 110px;
}

.detail-section,
.detail-panel {
  border-radius: 8px;
  border: 1px solid rgba(36, 27, 24, .1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 248, 232, .78));
  box-shadow: 0 22px 60px rgba(36, 27, 24, .08);
}

.detail-section {
  gap: 1rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.detail-panel {
  padding: clamp(1.2rem, 2vw, 1.55rem);
}

.detail-section .kicker {
  color: var(--forest);
}

.detail-section h2,
.detail-panel h2,
.detail-panel h3 {
  color: var(--forest);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.detail-section h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
}

.detail-panel h2,
.detail-panel h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.detail-lead,
.itinerary-day p,
.detail-section li,
.price-calc-result {
  color: #6f5e54;
  line-height: 1.72;
}

.detail-lead {
  font-size: clamp(1.02rem, 1.22vw, 1.12rem);
}

.detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.detail-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: 6px;
  border-color: rgba(217, 163, 59, .24);
  background: rgba(255, 250, 240, .82);
  color: #31241f;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.itinerary {
  gap: .95rem;
}

.itinerary-day {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: 8px;
  border-color: rgba(36, 27, 24, .1);
  background: rgba(255, 250, 240, .88);
  box-shadow: 0 16px 42px rgba(36, 27, 24, .06);
}

.itinerary-day::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--forest), var(--gold));
}

.day-label {
  width: fit-content;
  margin-bottom: .55rem;
  padding: .3rem .62rem;
  border-radius: 999px;
  background: rgba(90, 7, 24, .08);
  color: var(--forest);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.itinerary-day h4 {
  color: #2d211d;
  font-size: clamp(1.1rem, 1.6vw, 1.36rem);
}

.day-timeline {
  gap: .55rem;
  margin-top: 1rem;
  padding-top: .35rem;
}

.timeline-segment {
  grid-template-columns: 72px 1fr;
  gap: .85rem;
  padding: .72rem .78rem;
  border: 1px solid rgba(217, 163, 59, .2);
  border-radius: 6px;
  background: rgba(255, 255, 255, .52);
}

.segment-time {
  color: var(--forest);
  font-size: .88rem;
}

.timeline-segment strong {
  color: #2f241f;
}

.timeline-segment p {
  margin-top: .14rem;
  font-size: .94rem;
}

.detail-two-col {
  gap: 1rem;
}

.detail-two-col .detail-section ul {
  padding-left: 1.05rem;
}

.detail-two-col .detail-section li {
  color: #604f46;
}

.tour-detail-sidebar .detail-panel:first-child {
  border-color: rgba(90, 7, 24, .16);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .98), rgba(255, 246, 225, .95));
  box-shadow: 0 24px 70px rgba(36, 27, 24, .13);
}

.summary-list {
  gap: 0;
  margin-top: 1.05rem;
  border-top: 1px solid rgba(36, 27, 24, .1);
}

.summary-row {
  align-items: baseline;
  border-top: 0;
  border-bottom: 1px solid rgba(36, 27, 24, .1);
  padding: .86rem 0;
}

.summary-row span {
  color: #79685e;
  font-size: .92rem;
}

.summary-row strong {
  color: #2f241f;
  font-size: .96rem;
  font-weight: 900;
}

.tour-detail-sidebar .cta-actions {
  margin-top: 1.2rem;
}

.tour-detail-sidebar .btn {
  min-height: 50px;
}

.price-calc {
  background: rgba(255, 250, 240, .88);
}

.price-calc-form {
  gap: .85rem;
  margin-top: .95rem;
}

.price-calc-grid {
  grid-template-columns: 1fr;
  gap: .62rem;
}

.price-calc .form-field {
  gap: .28rem;
}

.price-calc .form-field label,
.price-calc-extras legend {
  color: #3a2c27;
  font-weight: 900;
}

.price-calc .form-field input,
.price-calc .form-field select {
  min-height: 44px;
  border: 1px solid rgba(36, 27, 24, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
  color: #2f241f;
}

.price-calc-extras {
  border-color: rgba(36, 27, 24, .1);
  border-radius: 6px;
  background: rgba(255, 255, 255, .42);
}

.extra-option {
  min-height: 32px;
  color: #6f5e54;
}

.price-calc-result {
  border-color: rgba(217, 163, 59, .26);
  border-radius: 6px;
  background: rgba(255, 255, 255, .65);
}

/* Compact booking sidebar */
.tour-detail-sidebar {
  gap: .58rem;
}

.tour-detail-sidebar .detail-panel {
  padding: .72rem;
  border: 1px solid rgba(90, 7, 24, .11);
  border-radius: 8px;
  background: rgba(255, 252, 245, .9);
  box-shadow: 0 12px 32px rgba(36, 27, 24, .07);
}

.tour-detail-sidebar .detail-panel h2,
.tour-detail-sidebar .detail-panel h3 {
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.1;
}

.tour-detail-sidebar .summary-list {
  gap: 0;
  margin-top: .52rem;
  overflow: hidden;
  border: 1px solid rgba(217, 163, 59, .2);
  border-radius: 7px;
  background: rgba(255, 255, 255, .54);
}

.tour-detail-sidebar .summary-row {
  display: grid;
  grid-template-columns: minmax(88px, .8fr) minmax(0, 1.15fr);
  align-items: center;
  gap: .58rem;
  padding: .42rem .58rem;
  border: 0;
  border-bottom: 1px solid rgba(217, 163, 59, .16);
}

.tour-detail-sidebar .summary-row:last-child {
  border-bottom: 0;
}

.tour-detail-sidebar .summary-row span {
  color: #806f65;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.tour-detail-sidebar .summary-row strong {
  min-width: 0;
  text-align: right;
  color: #2f241f;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.22;
}

.tour-detail-sidebar .summary-row:first-child {
  background: rgba(255, 248, 232, .5);
}

.tour-detail-sidebar .summary-row [data-tour-field="price_summary"] {
  color: var(--forest);
  font-size: .84rem;
}

.tour-detail-sidebar .cta-actions {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .85fr);
  gap: .42rem;
  margin-top: .58rem;
}

.tour-detail-sidebar .btn {
  min-height: 34px;
  padding: .5rem .62rem;
  border-radius: 999px;
  font-size: .76rem;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(36, 27, 24, .07);
}

.tour-detail-sidebar .btn-green {
  background: #5a0718;
  border-color: #5a0718;
  color: #fff;
}

.tour-detail-sidebar .btn-secondary {
  background: rgba(255, 255, 255, .66);
  border-color: rgba(217, 163, 59, .26);
  color: var(--forest);
}

.price-calc {
  background: rgba(255, 252, 245, .82);
}

.price-calc-form {
  gap: .48rem;
  margin-top: .52rem;
}

.price-calc-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .42rem;
}

.price-calc .form-field:nth-child(3),
.price-calc .form-field:nth-child(6) {
  grid-column: 1 / -1;
}

.price-calc .form-field {
  gap: .18rem;
}

.price-calc .form-field label,
.price-calc-extras legend {
  color: #4a3932;
  font-size: .69rem;
  font-weight: 900;
  line-height: 1.15;
}

.price-calc .form-field input,
.price-calc .form-field select {
  min-height: 34px;
  padding: .42rem .52rem;
  border: 1px solid rgba(36, 27, 24, .14);
  border-radius: 6px;
  background: rgba(255, 255, 255, .78);
  color: #2f241f;
  font-size: .8rem;
}

.price-calc .native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.styled-select {
  position: relative;
}

.styled-select-button {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .42rem .52rem;
  border: 1px solid rgba(36, 27, 24, .14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 250, 241, .84));
  color: #2f241f;
  font: inherit;
  font-size: .8rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.styled-select-button:hover,
.styled-select.open .styled-select-button,
.styled-select-button:focus-visible {
  border-color: rgba(90, 7, 24, .34);
  background: rgba(255, 250, 241, .96);
  box-shadow: 0 0 0 3px rgba(90, 7, 24, .08);
  outline: 0;
}

.styled-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.styled-select-chevron {
  color: var(--forest);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
}

.styled-select-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
  padding: .24rem;
  border: 1px solid rgba(90, 7, 24, .18);
  border-radius: 7px;
  background: rgba(255, 252, 245, .98);
  box-shadow: 0 18px 36px rgba(36, 27, 24, .14);
}

.styled-select.open .styled-select-menu {
  display: grid;
  gap: .12rem;
}

.styled-select-option {
  width: 100%;
  min-height: 30px;
  padding: .42rem .5rem;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #2f241f;
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.styled-select-option:hover,
.styled-select-option:focus-visible {
  background: rgba(217, 163, 59, .16);
  color: var(--forest);
  outline: 0;
}

.styled-select-option[aria-selected="true"] {
  background: var(--forest);
  color: #fff;
}

.price-calc-extras {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .22rem .46rem;
  padding: .5rem .56rem;
  border: 1px solid rgba(217, 163, 59, .22);
  border-radius: 7px;
  background: rgba(255, 255, 255, .46);
}

.price-calc-extras legend {
  padding-inline: .3rem;
}

.extra-option {
  min-height: 21px;
  align-items: center;
  gap: .32rem;
  color: #604f46;
  font-size: .7rem;
  line-height: 1.25;
}

.extra-option input {
  width: 12px;
  height: 12px;
}

.price-calc-result {
  margin-top: .48rem;
  padding: .54rem .62rem;
  border: 1px solid rgba(90, 7, 24, .14);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 248, 232, .78), rgba(255, 255, 255, .66));
  color: #6f5e54;
  font-size: .74rem;
  line-height: 1.3;
}

.calc-output {
  display: grid;
  gap: .24rem;
}

.calc-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: .24rem;
  border-bottom: 1px solid rgba(217, 163, 59, .2);
}

.calc-total-label {
  color: #6f5e54;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.calc-total-amount {
  color: var(--forest);
  font-size: 1rem;
  font-weight: 900;
}

.calc-per-person,
.calc-disclaimer,
.calc-breakdown li {
  color: #74645b;
  font-size: .76rem;
  line-height: 1.35;
}

.calc-breakdown {
  display: grid;
  gap: .18rem;
  padding: 0;
  list-style: none;
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  margin: 0;
}

.calc-breakdown li span:last-child {
  color: #2f241f;
  font-weight: 850;
  white-space: nowrap;
}

.tour-detail-sidebar .calc-breakdown,
.tour-detail-sidebar .calc-disclaimer {
  display: none;
}

/* Tour detail neutral refresh: keep cream as an accent, not the whole page. */
.tour-detail-page main {
  background: #f6f4ef !important;
}

.tour-detail-content-section {
  background: transparent !important;
}

.tour-detail-meta-strip .info-grid,
.detail-section,
.detail-panel,
.tour-detail-sidebar .detail-panel {
  background: rgba(255, 255, 255, .94) !important;
  border-color: rgba(36, 27, 24, .09);
  box-shadow: 0 18px 52px rgba(36, 27, 24, .07);
}

.tour-detail-meta-strip .info-grid {
  backdrop-filter: none;
}

.tour-detail-meta-strip .info-item,
.detail-list li,
.itinerary-day,
.timeline-segment,
.tour-detail-sidebar .summary-list,
.price-calc-extras,
.price-calc-result {
  background: rgba(255, 255, 255, .86) !important;
  border-color: rgba(36, 27, 24, .1);
}

.tour-detail-sidebar .summary-row:first-child {
  background: rgba(90, 7, 24, .035);
}

.price-calc,
.tour-detail-sidebar .price-calc {
  background: rgba(255, 255, 255, .96) !important;
}

.price-calc .form-field input,
.price-calc .form-field select,
.styled-select-button {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(36, 27, 24, .14);
}

.styled-select-button:hover,
.styled-select.open .styled-select-button,
.styled-select-button:focus-visible {
  background: #fff;
}

.tour-detail-sidebar .detail-panel,
.tour-detail-sidebar .price-calc {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .96), rgba(255, 241, 207, .9)) !important;
  border-color: rgba(217, 163, 59, .28);
  box-shadow: 0 18px 52px rgba(36, 27, 24, .09);
}

.tour-detail-sidebar .summary-list,
.tour-detail-sidebar .price-calc-extras,
.tour-detail-sidebar .price-calc-result {
  background: rgba(255, 252, 245, .78) !important;
  border-color: rgba(217, 163, 59, .24);
}

.tour-detail-sidebar .summary-row:first-child {
  background: rgba(255, 248, 232, .72);
}

@media (max-width: 980px) {
  .tour-detail-page .site-header {
    background: linear-gradient(180deg, rgba(255, 248, 232, .96), rgba(255, 243, 216, .9));
  }

  .tour-detail-layout,
  .detail-two-col {
    grid-template-columns: 1fr;
  }

  .tour-detail-sidebar {
    position: static;
  }

  .tour-detail-meta-strip {
    margin-top: 0;
  }

  .tour-detail-meta-strip .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tour-detail-hero {
    min-height: auto;
  }

  .tour-detail-hero .container {
    padding-top: 5rem;
    padding-bottom: 3.1rem;
  }

  .tour-detail-hero-copy h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .tour-detail-meta-strip .info-grid {
    grid-template-columns: 1fr;
    padding: .75rem 0;
    background: transparent;
    box-shadow: none;
  }

  .tour-detail-meta-strip .info-item {
    min-height: 52px;
  }

  .timeline-segment {
    grid-template-columns: 1fr;
  }

  .detail-hero-actions .btn {
    width: 100%;
  }
}

html[dir="rtl"] .tour-detail-back::before {
  content: ">";
}

html[dir="rtl"] .itinerary-day::before {
  left: auto;
  right: 0;
}

/* Stable Arabic header layout on desktop and mobile. */
html[dir="rtl"] .site-header .nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "lang nav logo";
  align-items: center;
  gap: clamp(.7rem, 1.4vw, 1.25rem);
  direction: ltr;
}

html[dir="rtl"] .site-header .logo {
  grid-area: logo;
  grid-column: 3;
  justify-self: end;
  margin: 0;
}

html[dir="rtl"] .site-header .nav {
  grid-area: nav;
  grid-column: 2;
  justify-self: center;
  max-width: 100%;
  direction: rtl;
  flex-direction: row;
}

html[dir="rtl"] .site-header .nav > a,
html[dir="rtl"] .site-header .dropdown-toggle {
  direction: rtl;
  white-space: nowrap;
}

html[dir="rtl"] .site-header .lang-switch {
  grid-area: lang;
  grid-column: 1;
  justify-self: start;
  width: auto;
  direction: rtl;
}

html[dir="rtl"] .site-header .lang-menu {
  right: auto;
  left: 0;
  text-align: right;
}

html[dir="rtl"] .site-header .lang-option {
  text-align: right;
}

@media (max-width: 1180px) and (min-width: 981px) {
  html[dir="rtl"] .home-page .nav-wrap {
    width: min(calc(100% - 24px), 1380px);
  }

  html[dir="rtl"] .home-page .site-header .logo-img {
    width: 178px;
    height: 58px;
  }

  html[dir="rtl"] .home-page .nav {
    gap: .12rem;
    padding: .34rem;
  }

  html[dir="rtl"] .home-page .nav > a,
  html[dir="rtl"] .home-page .dropdown-toggle {
    padding-inline: .68rem;
    font-size: .78rem;
  }

  html[dir="rtl"] .home-page .nav-cta {
    padding-inline: .95rem !important;
  }
}

@media (max-width: 980px) {
  html[dir="rtl"] .site-header .nav-wrap {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "menu logo lang";
    min-height: 84px;
  }

  html[dir="rtl"] .site-header .menu-toggle {
    grid-area: menu;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    margin: 0;
  }

  html[dir="rtl"] .site-header .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  html[dir="rtl"] .site-header .lang-switch {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: auto;
  }

  html[dir="rtl"] .site-header .lang-current {
    width: auto;
    min-width: 86px;
    justify-content: center;
    padding-inline: .78rem;
  }

  html[dir="rtl"] .site-header .nav {
    grid-area: auto;
    position: absolute;
    inset: 84px 0 auto 0;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    direction: rtl;
    flex-direction: column;
    align-items: stretch;
    text-align: right;
  }

  html[dir="rtl"] .site-header .nav > a,
  html[dir="rtl"] .site-header .dropdown-toggle {
    justify-content: flex-start;
    text-align: right;
  }

  html[dir="rtl"] .site-header .dropdown-menu {
    text-align: right;
  }

  html[dir="rtl"] .site-header .lang-menu {
    position: absolute;
    left: 0;
    right: auto;
    top: calc(100% + 8px);
    width: min(230px, calc(100vw - 32px));
    box-shadow: 0 20px 46px rgba(36, 27, 24, .15);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
  }
}

@media (max-width: 640px) {
  html[dir="rtl"] .home-page .site-header .logo-img,
  html[dir="rtl"] .site-header .logo-img {
    width: 136px;
    height: 46px;
  }

  html[dir="rtl"] .site-header .logo {
    min-width: 0;
    padding: 4px 6px;
  }

  html[dir="rtl"] .site-header .lang-current {
    min-width: 74px;
    min-height: 40px;
    padding-inline: .55rem;
    gap: .28rem;
  }

  html[dir="rtl"] .site-header .lang-option-name {
    white-space: nowrap;
  }
}

/* Header final layout:
   Desktop keeps the cream mobile header color.
   LTR: logo left, menu right. RTL: menu left, logo right.
   Mobile: language floats bottom-right; WhatsApp floats bottom-left. */
@media (min-width: 981px) {
  .site-header,
  .home-page .site-header,
  .home-page .site-header.is-scrolled,
  .site-header.is-scrolled,
  .tour-detail-page .site-header,
  .tour-detail-page .site-header.is-scrolled {
    background: linear-gradient(180deg, #fff8e8, #fff3d8) !important;
    border-bottom: 1px solid rgba(217, 163, 59, .28) !important;
    box-shadow: 0 14px 34px rgba(36, 27, 24, .1) !important;
    color: var(--ink) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page .nav,
  .home-page .site-header.is-scrolled .nav {
    border-color: rgba(217, 163, 59, .28);
    background: rgba(255, 250, 241, .5);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .78),
      0 12px 34px rgba(90, 7, 24, .07);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-page .nav > a:hover,
  .home-page .dropdown-toggle:hover,
  .home-page .dropdown-toggle[data-current="page"],
  .home-page .nav a[aria-current="page"],
  .home-page .site-header.is-scrolled .nav > a:hover,
  .home-page .site-header.is-scrolled .dropdown-toggle:hover,
  .home-page .site-header.is-scrolled .dropdown-toggle[data-current="page"],
  .home-page .site-header.is-scrolled .nav a[aria-current="page"] {
    color: var(--forest);
    background: rgba(217, 163, 59, .12);
  }
}

@media (max-width: 980px) {
  .site-header,
  .home-page .site-header,
  .home-page .site-header.is-scrolled,
  .site-header.is-scrolled,
  .tour-detail-page .site-header,
  .tour-detail-page .site-header.is-scrolled {
    background: linear-gradient(180deg, #fff8e8, #fff3d8) !important;
    border-bottom: 1px solid rgba(217, 163, 59, .28) !important;
    box-shadow: 0 14px 34px rgba(36, 27, 24, .1) !important;
    color: var(--ink) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
  }

  .premium-motion .site-header {
    animation: none !important;
    transform: none !important;
  }

  .site-header .nav-wrap,
  .home-page .nav-wrap,
  html[dir="rtl"] .site-header .nav-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo spacer menu";
    align-items: center;
    min-height: 84px;
    gap: .55rem;
    direction: ltr;
  }

  .site-header .logo,
  .home-page .site-header .logo,
  html[dir="rtl"] .site-header .logo {
    grid-area: logo;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin: 0;
    min-width: 0;
  }

  .site-header .menu-toggle,
  html[dir="rtl"] .site-header .menu-toggle {
    grid-area: menu;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex !important;
    margin: 0;
    z-index: 5;
  }

  html[dir="rtl"] .site-header .nav-wrap {
    grid-template-areas: "menu spacer logo";
  }

  html[dir="rtl"] .site-header .logo {
    grid-column: 3;
    justify-self: end;
  }

  html[dir="rtl"] .site-header .menu-toggle {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .lang-switch,
  html[dir="rtl"] .site-header .lang-switch {
    display: inline-flex !important;
    position: fixed !important;
    top: auto !important;
    right: 18px !important;
    bottom: 18px !important;
    left: auto !important;
    grid-area: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
    align-self: auto !important;
    width: max-content !important;
    max-width: 100%;
    direction: ltr;
    z-index: 260;
  }

  html[dir="rtl"] .site-header .lang-switch {
    justify-self: auto !important;
  }

  .site-header .lang-current,
  html[dir="rtl"] .site-header .lang-current {
    width: 82px;
    min-width: 82px;
    min-height: 42px;
    justify-content: center;
    gap: .32rem;
    padding: .48rem .58rem;
    background: #fff8e8;
    border-color: rgba(217, 163, 59, .42);
    box-shadow: 0 10px 24px rgba(36, 27, 24, .1);
  }

  .site-header .lang-menu,
  html[dir="rtl"] .site-header .lang-menu {
    position: absolute;
    top: auto;
    right: 0;
    left: auto;
    bottom: calc(100% + 10px);
    width: min(230px, calc(100vw - 32px));
    max-height: min(70vh, 360px);
    overflow-y: auto;
    box-shadow: 0 20px 46px rgba(36, 27, 24, .18);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    display: grid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
  }

  .site-header .lang-menu.open,
  .site-header .lang-switch.is-open .lang-menu,
  html[dir="rtl"] .site-header .lang-menu.open,
  html[dir="rtl"] .site-header .lang-switch.is-open .lang-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .nav,
  html[dir="rtl"] .site-header .nav {
    grid-area: auto;
    position: absolute;
    inset: 84px 0 auto 0;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(180deg, #fff8e8, #fff3d8) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(217, 163, 59, .28) !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 38px rgba(36, 27, 24, .12) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page .nav > a,
  .home-page .dropdown-toggle,
  .site-header .nav > a,
  .site-header .dropdown-toggle {
    color: var(--ink) !important;
  }

  .site-header .nav > a::before,
  .site-header .dropdown-toggle::before {
    display: none;
  }

  .home-page .nav > a:hover,
  .home-page .dropdown-toggle:hover,
  .home-page .dropdown-toggle[data-current="page"],
  .home-page .nav a[aria-current="page"],
  .home-page .site-header.is-scrolled .nav > a:hover,
  .home-page .site-header.is-scrolled .dropdown-toggle:hover,
  .home-page .site-header.is-scrolled .dropdown-toggle[data-current="page"],
  .home-page .site-header.is-scrolled .nav a[aria-current="page"],
  .site-header .nav a[aria-current="page"],
  .site-header .dropdown-toggle[data-current="page"] {
    color: var(--forest) !important;
    background: rgba(217, 163, 59, .14) !important;
  }

  html[dir="rtl"] .site-header .nav {
    direction: rtl;
    text-align: right;
  }

  .floating-whatsapp,
  .home-page .floating-whatsapp,
  html[dir="rtl"] .floating-whatsapp {
    display: grid;
    left: 18px;
    right: auto;
    bottom: 18px;
    width: 50px;
    height: 50px;
    z-index: 255;
  }

  .back-to-top,
  html[dir="rtl"] .back-to-top {
    right: 18px;
    left: auto;
    bottom: 86px;
  }
}

@media (max-width: 640px) {
  .site-header .logo-img,
  .home-page .site-header .logo-img,
  html[dir="rtl"] .site-header .logo-img {
    width: 136px;
    height: 46px;
  }

  .site-header .logo,
  .home-page .site-header .logo,
  html[dir="rtl"] .site-header .logo {
    padding: 4px 6px;
  }

  .site-header .lang-switch,
  html[dir="rtl"] .site-header .lang-switch {
    top: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
  }

  .floating-whatsapp,
  .home-page .floating-whatsapp,
  html[dir="rtl"] .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}
