/* ============================================================
   GODMUS CAR RENTAL — shared stylesheet (EN / FR / AR)
   Palette: emerald green + champagne on dark charcoal
   RTL-safe: logical properties only (inline-start/end)
   ============================================================ */

:root {
  --emerald:        #12a56d;
  --emerald-bright: #1cc985;
  --emerald-deep:   #0b6b47;
  --champagne:      #f0e2c0;
  --champagne-soft: #f8f1de;
  --ink:            #0f1512;
  --surface-dark:   #18211c;
  --surface-darker: #131b16;
  --line-dark:      rgba(240, 226, 192, 0.12);
  --paper:          #f5f6f3;
  --card:           #ffffff;
  --text-dark:      #222924;
  --text-mute:      #5d6862;
  --text-light:     #e9ece9;
  --text-light-mute:#a8b3ab;
  --whatsapp:       #25d366;
  --radius-card: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 40px rgba(15, 21, 18, 0.10);
  --shadow-pop:  0 18px 50px rgba(15, 21, 18, 0.18);
  --font-display: "Sora", "Tajawal", system-ui, sans-serif;
  --font-serif: "Fraunces", "Sora", "Tajawal", Georgia, serif;
  --font-body: "Manrope", "Tajawal", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

[lang="ar"] body,
html[lang="ar"] body { font-family: "Tajawal", system-ui, sans-serif; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
}

html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 {
  font-family: "Tajawal", system-ui, sans-serif;
  line-height: 1.35;
}

p { margin: 0 0 1em; }

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

.wrap {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--emerald-bright); outline-offset: 3px; }

.btn-solid {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 10px 28px rgba(18, 165, 109, 0.35);
}
.btn-solid:hover { background: var(--emerald-bright); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

.btn-dark {
  background: var(--ink);
  color: var(--champagne);
}
.btn-dark:hover { background: var(--surface-dark); }

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline-dark:hover { background: rgba(15, 21, 18, 0.08); }

.btn svg { flex: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 90;
  background: rgba(15, 21, 18, 0.92);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s var(--ease-out);
}
.site-header.scrolled { box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo img { height: 52px; width: auto; }

.header-tools { display: flex; align-items: center; gap: 0.9rem; }

/* language dropdown (flags) */
.lang-dropdown { position: relative; }
.lang-dropdown details { position: relative; }
.lang-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background-color 0.2s, border-color 0.2s;
}
.lang-dropdown summary::-webkit-details-marker { display: none; }
.lang-dropdown summary:hover { background: rgba(255, 255, 255, 0.14); }
.lang-dropdown .flag {
  width: 22px;
  height: 15px;
  flex: none;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  object-fit: cover;
}
.lang-dropdown .chev { opacity: 0.75; transition: transform 0.25s var(--ease-out); }
.lang-dropdown details[open] .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  z-index: 95;
  inset-inline-end: 0;
  inset-block-start: calc(100% + 0.5rem);
  min-width: 200px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}
.lang-menu li { margin: 0; border: 0; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.7rem;
  border-radius: 9px;
  color: var(--text-light-mute);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.18s, color 0.18s;
}
.lang-menu a .flag { width: 26px; height: 17px; }
.lang-menu a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; padding-inline-start: 0.7rem; }
.lang-menu a.active { color: var(--emerald-bright); background: rgba(255, 255, 255, 0.05); }
html[lang="ar"] .lang-menu { inset-inline-end: auto; inset-inline-start: 0; }

.nav-toggle {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--champagne);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset-block-start: 76px;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 85;
  background: rgba(15, 21, 18, 0.98);
  padding: 2.2rem 1.4rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { border-block-end: 1px solid var(--line-dark); }
.mobile-menu a {
  display: block;
  padding: 1.05rem 0.3rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.2s, padding-inline-start 0.25s var(--ease-out);
}
.mobile-menu a:hover { color: var(--emerald-bright); padding-inline-start: 0.8rem; }

/* desktop nav */
.desktop-nav { display: none; }
.desktop-nav a {
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-light-mute);
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--champagne); }

@media (min-width: 960px) {
  .desktop-nav { display: flex; align-items: center; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 9rem 4rem;
  background: var(--ink);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* rotating background slideshow — JS carousel with prev/next arrows */
.hero-slides { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.1s var(--ease-out);
}
/* distinct base tints so the motion is visible even before photos are added */
.hero-slide:nth-child(1) { background-color: #17251d; }
.hero-slide:nth-child(2) { background-color: #201a25; }
.hero-slide:nth-child(3) { background-color: #251d17; }
.hero-slide:nth-child(4) { background-color: #141c28; }
.hero-slide.is-active { opacity: 1; animation: heroZoom 7s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* darkening overlay keeps the headline readable over any photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,21,18,.55) 0%, rgba(15,21,18,.40) 42%, rgba(15,21,18,.94) 100%),
    linear-gradient(90deg, rgba(15,21,18,.55) 0%, rgba(15,21,18,.12) 50%, rgba(15,21,18,.45) 100%);
}

/* hero carousel controls */
.hero-arrow {
  position: absolute;
  z-index: 4;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 21, 18, 0.32);
  backdrop-filter: blur(8px);
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-arrow:hover { background: var(--emerald); border-color: var(--emerald); }
.hero-arrow:active { transform: translateY(-50%) scale(0.94); }
.hero-arrow.prev { inset-inline-start: 1.1rem; }
.hero-arrow.next { inset-inline-end: 1.1rem; }
.hero-dots {
  position: absolute;
  z-index: 4;
  inset-block-end: 7rem;
  inset-inline: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s var(--ease-out), background-color 0.25s;
}
.hero-dots button.active { width: 24px; border-radius: 5px; background: var(--emerald-bright); }
@media (max-width: 640px) {
  .hero-arrow { width: 44px; height: 44px; font-size: 1.4rem; }
  .hero-dots { inset-block-end: 8.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; transform: none; }
}

/* ---------- fleet showroom background ---------- */
#fleet {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  isolation: isolate;
}
#fleet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,21,18,.86) 0%, rgba(15,21,18,.62) 38%, rgba(15,21,18,.82) 100%),
    url("../assets/fleetBG.png") center / cover no-repeat;
}
#fleet .section-head h2 { color: #fff; }
#fleet .section-head .lead { color: var(--text-light-mute); }
#fleet .eyebrow { color: var(--champagne); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-inline: auto;
  margin-block-end: 1.6rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(240, 226, 192, 0.45);
  border-radius: var(--radius-pill);
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
html[lang="ar"] .hero-badge { letter-spacing: 0; font-size: 0.95rem; }

.hero h1 {
  font-size: clamp(2.5rem, 7.2vw, 4.6rem);
  font-weight: 700;
  color: #fff;
  margin-block-end: 1.1rem;
}
.hero h1 .accent { color: var(--emerald-bright); }
.hero h1 .accent-soft { color: var(--champagne); }

.hero-sub {
  max-width: 40rem;
  margin-inline: auto;
  margin-block-end: 2.2rem;
  font-size: 1.13rem;
  color: var(--text-light-mute);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-block-end: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem 3.5rem;
}
.stat { text-align: center; }
.stat-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--emerald-bright);
}
.stat-num svg { color: var(--champagne); }
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light-mute);
}
html[lang="ar"] .stat-label { letter-spacing: 0; font-size: 0.9rem; }

/* ---------- generic sections ---------- */
section { padding-block: 5.5rem; }

.section-dark { background: var(--ink); color: var(--text-light); }
.section-darker { background: var(--surface-darker); color: var(--text-light); }
.section-light { background: var(--paper); color: var(--text-dark); }

.section-head { text-align: center; max-width: 46rem; margin-inline: auto; margin-block-end: 3.2rem; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-block-end: 0.8rem;
}
.section-dark .eyebrow, .section-darker .eyebrow { color: var(--champagne); }
html[lang="ar"] .eyebrow { letter-spacing: 0.06em; font-size: 1rem; }

.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.section-head .lead { color: var(--text-mute); font-size: 1.08rem; }
.section-dark .section-head .lead, .section-darker .section-head .lead { color: var(--text-light-mute); }

/* ---------- booking widget ---------- */
.booking { padding-block: 0 5rem; background: var(--paper); }
.booking-card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-pop);
  padding: 2.2rem 1.8rem;
  max-width: 640px;
  margin-inline: auto;
  margin-block-start: -3.5rem;
  position: relative;
  z-index: 2;
}
.booking-card h2 { font-size: 1.45rem; margin-block-end: 1.4rem; }
.field { margin-block-end: 1.15rem; }
.field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  margin-block-end: 0.45rem;
}
.field input, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text-dark);
  background: #f2f3f0;
  border: 1.5px solid #e2e5df;
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(18, 165, 109, 0.18);
}
.booking-card .btn { width: 100%; margin-block-start: 0.4rem; }

@media (min-width: 760px) {
  .booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
  .booking-fields .field:nth-child(3) { grid-column: 1 / -1; }
  .booking-fields .btn { grid-column: 1 / -1; }
}

/* ---------- fleet ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-block-end: 2.8rem;
}
.chip {
  appearance: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #d8dcd4;
  background: var(--card);
  color: var(--text-mute);
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
}
.chip:hover { border-color: var(--emerald); color: var(--emerald-deep); }
.chip.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
  box-shadow: 0 6px 18px rgba(18, 165, 109, 0.3);
}

.fleet-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.car-card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.car-card.hidden { display: none; }

.car-media {
  position: relative;
  background: #fff;
  padding: 2rem 1.6rem;
}
.car-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-inline: auto;
}
.badge-available {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-end: 1rem;
  background: var(--champagne);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-radius: var(--radius-pill);
}
html[lang="ar"] .badge-available { letter-spacing: 0; font-size: 0.82rem; }

.car-body { padding: 1.5rem 1.6rem 1.7rem; border-block-start: 1px solid #eef0ec; display: flex; flex-direction: column; flex: 1; }
.car-body h3 { font-size: 1.28rem; margin-block-end: 0.1rem; }
.car-cat { color: var(--text-mute); font-size: 0.95rem; margin-block-end: 1.1rem; }

.car-specs {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding-block: 1rem;
  border-block: 1px solid #eef0ec;
  margin-block-end: 1.2rem;
}
.spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--text-mute);
  flex: 1;
  text-align: center;
}
.spec svg { color: var(--text-dark); }

.car-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-block-start: auto; }
.price { line-height: 1.15; }
.price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
}
.price span { font-size: 0.85rem; color: var(--text-mute); }
.btn-book {
  background: var(--ink);
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
}
.btn-book:hover { background: var(--emerald); }

/* ---------- destinations ---------- */
.dest-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.dest-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, #1d3128 0%, var(--surface-darker) 100%);
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dest-card:hover img { transform: scale(1.05); }
.dest-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 11, 0.88) 55%);
  padding-block-start: 5rem;
}
.dest-tag {
  display: inline-block;
  background: var(--champagne);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-pill);
  margin-block-end: 0.8rem;
}
html[lang="ar"] .dest-tag { letter-spacing: 0; font-size: 0.82rem; }
.dest-body h3 { font-size: 1.5rem; color: #fff; }
.dest-body p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; }

/* ---------- services ---------- */
.services-grid {
  display: grid;
  gap: 3rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  text-align: center;
}
.service { max-width: 330px; margin-inline: auto; }
.icon-circle {
  width: 118px;
  height: 118px;
  margin-inline: auto;
  margin-block-end: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald);
  color: var(--ink);
  box-shadow: 0 0 0 14px rgba(18, 165, 109, 0.12), 0 14px 40px rgba(18, 165, 109, 0.35);
}
.icon-circle svg { width: 44px; height: 44px; }
.service h3 { font-size: 1.35rem; }
.service p { color: var(--text-mute); }

/* ---------- why ---------- */
.why-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.why-card {
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  padding: 2.6rem 1.9rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(28, 201, 133, 0.45); }
.why-card .icon-circle {
  width: 96px;
  height: 96px;
  background: var(--champagne);
  box-shadow: 0 0 0 12px rgba(240, 226, 192, 0.08);
}
.why-card .icon-circle svg { width: 38px; height: 38px; }
.why-card h3 { font-size: 1.3rem; color: #fff; }
.why-card p { color: var(--text-light-mute); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 1.1rem; }
.faq-item {
  background: var(--card);
  border-radius: 18px;
  border-inline-start: 5px solid var(--emerald);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--emerald);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.6rem 1.5rem; color: var(--text-mute); }
.faq-item .faq-a p { margin: 0; }

/* ---------- reviews ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 1.05rem;
  color: var(--text-light-mute);
  margin-block-end: 2.6rem;
}
.stars { color: #f5c04e; letter-spacing: 0.1em; font-size: 1.15rem; }
.reviews-summary strong { color: #fff; font-size: 1.25rem; }

.review-rail {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block-end: 1rem;
  scrollbar-width: none;
}
.review-rail::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(340px, 86%);
  scroll-snap-align: center;
  background: var(--card);
  color: var(--text-dark);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-card);
}
.review-head { display: flex; align-items: center; gap: 0.9rem; margin-block-end: 0.9rem; }
.avatar {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--emerald-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.review-name { font-weight: 800; line-height: 1.2; }
.review-name .verified { color: var(--emerald); font-size: 0.85em; }
.review-when { font-size: 0.85rem; color: var(--text-mute); }
.review-card .stars { display: block; margin-block-end: 0.7rem; font-size: 1rem; }
.review-card p { margin: 0; color: var(--text-mute); }

.review-nav { display: flex; justify-content: center; gap: 0.8rem; margin-block-start: 1.4rem; }
.review-nav button {
  appearance: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line-dark);
  background: var(--surface-dark);
  color: var(--champagne);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.review-nav button:hover { background: var(--emerald); color: #fff; }

.reviews-cta { text-align: center; margin-block-start: 2.6rem; }
.reviews-cta .note { color: var(--text-light-mute); margin-block-end: 1.2rem; }
.btn-google {
  border-color: var(--champagne);
  color: var(--champagne);
}
.btn-google:hover { background: rgba(240, 226, 192, 0.1); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; }
.cta-band .lead { max-width: 34rem; margin-inline: auto; margin-block-end: 2.2rem; color: rgba(255, 255, 255, 0.88); font-size: 1.1rem; }
.cta-band .hero-ctas { margin-block-end: 0; }
.cta-band .btn-dark { box-shadow: 0 12px 32px rgba(10, 14, 11, 0.35); }
.cta-band .btn-outline:hover { background: rgba(255, 255, 255, 0.14); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--surface-darker);
  color: var(--text-light-mute);
  padding-block: 4.5rem 0;
}
.footer-grid {
  display: grid;
  gap: 2.8rem;
  grid-template-columns: 1fr;
  padding-block-end: 3rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; } }

.footer-brand img { height: 60px; margin-block-end: 1.1rem; }
.footer-brand p { max-width: 30rem; }

.socials { display: flex; gap: 0.7rem; margin-block-start: 1.3rem; }
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 226, 192, 0.4);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.socials a:hover { background: var(--emerald); border-color: var(--emerald); color: #fff; }

.site-footer h4 {
  color: var(--emerald-bright);
  font-size: 1.15rem;
  margin-block-end: 1.1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--champagne); }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.7rem; }
.contact-list svg { flex: none; margin-block-start: 0.25rem; color: var(--champagne); }
.contact-list a:hover { color: var(--champagne); }

.footer-bottom {
  border-block-start: 1px solid var(--line-dark);
  padding-block: 1.6rem;
  text-align: center;
  font-size: 0.9rem;
}

/* footer contact form */
.footer-contact-form { margin-block-start: 1.6rem; display: grid; gap: 0.7rem; }
.footer-contact-form h4 { margin-block-end: 0.2rem; }
.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  resize: vertical;
}
.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder { color: var(--text-light-mute); }
.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(18, 165, 109, 0.2);
}
.footer-contact-form .btn { width: 100%; }
.footer-contact-form .form-note {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald-bright);
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  inset-block-end: 1.4rem;
  inset-inline-end: 1.4rem;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease-out);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 32px; height: 32px; }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PREMIUM LAYER — editorial identity, motion, texture
   ============================================================ */

/* editorial serif for the big headings (Arabic keeps Tajawal via the rule above) */
.hero h1,
.section-head h2,
.cta-band h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hero h1 { font-weight: 600; }

/* gradient accent words in the hero headline */
.hero h1 .accent {
  background: linear-gradient(115deg, var(--emerald-bright), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* refined section eyebrow — a small diamond emblem before the label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: currentColor;
  transform: rotate(45deg);
  opacity: 0.9;
}

/* scroll progress bar */
.scroll-progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  box-shadow: 0 0 12px rgba(28, 201, 133, 0.6);
  transition: width 0.1s linear;
}

/* count-up: keep numbers from reflowing while animating */
.stat-num { font-variant-numeric: tabular-nums; }

/* richer card interactions */
.car-card { transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(18, 165, 109, 0.18), 0 8px 20px rgba(15, 21, 18, 0.1);
}
.car-media img { transition: transform 0.5s var(--ease-out); }
.car-card:hover .car-media img { transform: scale(1.05); }
.dest-card:hover { box-shadow: 0 26px 55px rgba(15, 21, 18, 0.35); }

/* subtle grain on hero for depth */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* film-grain over the whole site — very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* branded scrollbar */
* { scrollbar-color: var(--emerald) rgba(15,21,18,0.08); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: rgba(15, 21, 18, 0.06); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--emerald-bright), var(--emerald-deep));
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--emerald); background-clip: padding-box; }

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
}

/* ---------- desktop refinements ---------- */
@media (min-width: 960px) {
  .hero { text-align: start; }
  .hero .wrap { width: min(var(--wrap), 100% - 4rem); }
  .hero-badge, .hero-sub { margin-inline: 0; }
  .hero-ctas, .hero-stats { justify-content: flex-start; }
  .hero h1 { max-width: 15ch; }
  .booking-card { max-width: 100%; padding: 2.6rem 2.6rem; margin-block-start: -5rem; }
  .booking-fields { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; gap: 1.2rem; }
  .booking-fields .field { margin-block-end: 0; }
  .booking-fields .field:nth-child(3) { grid-column: auto; }
  .booking-card .btn { width: auto; margin-block-start: 0; padding-block: 0.95rem; }
  .booking-fields .btn { grid-column: auto; }
  .booking-card h2 { text-align: start; }
}
