/* SafariWay — style.css — v1.0 */
/* Brand: Cinematic dark desert · Gold & terracotta · Cinzel + Cairo */

/* ── RESET & BASE ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --c-void:     oklch(0.09 0.012 42);
  --c-deep:     oklch(0.13 0.015 43);
  --c-ground:   oklch(0.19 0.018 45);
  --c-rim:      oklch(0.28 0.022 47);
  --c-gold:     oklch(0.73 0.148 72);
  --c-gold-hi:  oklch(0.84 0.110 76);
  --c-gold-lo:  oklch(0.58 0.130 68);
  --c-terra:    oklch(0.52 0.162 38);
  --c-terra-hi: oklch(0.65 0.135 42);
  --c-text:     oklch(0.93 0.008 75);
  --c-text-2:   oklch(0.72 0.015 70);
  --c-text-3:   oklch(0.50 0.012 65);
  --c-wa:       oklch(0.66 0.21 145);
  --c-wa-dark:  oklch(0.52 0.19 142);

  /* Typography */
  --f-display: 'Cinzel', Georgia, serif;
  --f-body:    'Cairo', 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs:  clamp(0.5rem,  1vw,  0.75rem);
  --sp-sm:  clamp(0.75rem, 1.5vw, 1rem);
  --sp-md:  clamp(1rem,    2vw,  1.5rem);
  --sp-lg:  clamp(1.5rem,  3vw,  2.5rem);
  --sp-xl:  clamp(2rem,    5vw,  4rem);
  --sp-2xl: clamp(3rem,    7vw,  6rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--c-void);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
figure { margin: 0; }

/* Arabic mode direction */
html[dir="rtl"] { font-family: var(--f-body); }
html[dir="rtl"] .logo-en,
html[dir="rtl"] .hero-t1,
html[dir="rtl"] .hero-t2 { font-family: var(--f-display); }

/* ── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-void); }
::-webkit-scrollbar-thumb { background: var(--c-gold-lo); border-radius: 3px; }

/* ── FOCUS ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── SECTION SHARED ────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--f-display);
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.section-sub {
  max-width: 52ch;
  color: var(--c-text-2);
  margin-top: var(--sp-sm);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

/* ── BUTTONS ───────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.8em;
  background: var(--c-gold);
  color: var(--c-void);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  border-radius: 4px;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--c-gold-hi);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(0.73 0.148 72 / 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.8em;
  background: transparent;
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  border: 1px solid oklch(0.93 0.008 75 / 0.35);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s var(--ease-out);
}

.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.btn-primary svg, .btn-primary [data-lucide],
.btn-outline svg, .btn-outline [data-lucide] {
  width: 18px; height: 18px; flex-shrink: 0;
}


/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    oklch(0.06 0.015 42 / 0.72) 0%,
    oklch(0.06 0.015 42 / 0.00) 100%
  );
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.nav.scrolled {
  background: oklch(0.09 0.012 42 / 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 oklch(0.28 0.022 47 / 0.5),
              0 4px 24px oklch(0.05 0.010 42 / 0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.logo-mark { width: 42px; height: 22px; flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-en {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-text);
}

.logo-ar {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.02em;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: var(--sp-lg);
  margin-left: auto;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-2);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--c-gold); }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4em;
  background: transparent;
  border: 1px solid var(--c-rim);
  color: var(--c-text-2);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4em 0.85em;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--c-gold); color: var(--c-gold); }
.lang-toggle [data-lucide], .lang-toggle svg { width: 14px; height: 14px; }

.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-lo) 100%);
  color: var(--c-void);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55em 1.3em 0.55em 1.1em;
  border-radius: 100px;
  box-shadow: 0 2px 12px oklch(0.73 0.148 72 / 0.30);
  transition: background 0.2s, transform 0.15s var(--ease-out), box-shadow 0.2s;
  white-space: nowrap;
}
.btn-wa-nav:hover {
  background: linear-gradient(135deg, var(--c-gold-hi) 0%, var(--c-gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px oklch(0.73 0.148 72 / 0.45);
}
.btn-wa-nav [data-lucide], .btn-wa-nav svg { width: 14px; height: 14px; }

/* Burger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--c-text);
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-burger [data-lucide] { width: 24px; height: 24px; }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: oklch(0.11 0.012 42 / 0.97);
  backdrop-filter: blur(16px);
  padding: var(--sp-md) var(--sp-lg) var(--sp-lg);
  border-top: 1px solid var(--c-rim);
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.nav-mobile ul a {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text-2);
  padding: 0.5rem 0;
  border-bottom: 1px solid oklch(0.28 0.022 47 / 0.4);
  transition: color 0.2s;
}
.nav-mobile ul a:hover { color: var(--c-gold); }

.mobile-wa { margin-top: var(--sp-sm); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .lang-toggle { /* keep visible */ }
  .nav-actions .btn-wa-nav { display: none; }
  .nav-burger { display: block; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 var(--sp-md); }
  .lang-toggle span { display: none; }
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animated sky gradient */
.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.10 0.040 285)  0%,
    oklch(0.16 0.055 275) 18%,
    oklch(0.30 0.090 278) 34%,
    oklch(0.56 0.175 48)  52%,
    oklch(0.50 0.165 40)  66%,
    oklch(0.28 0.065 38)  82%,
    oklch(0.14 0.025 36) 100%
  );
  animation: skyPulse 10s ease-in-out infinite alternate;
}

@keyframes skyPulse {
  0%   { filter: brightness(0.90) hue-rotate(-6deg) saturate(1.1); }
  100% { filter: brightness(1.15) hue-rotate(8deg)  saturate(1.3); }
}

/* Stars */
.hero-stars {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.85; }
  50%       { opacity: 0.15; }
}
.s-twinkle { animation: twinkle 3.5s ease-in-out infinite; }

/* Back dunes */
.hero-dunes-back {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 45%;
  pointer-events: none;
}

/* Front dunes */
.hero-dunes-front {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 38%;
  pointer-events: none;
}

/* Car scene */
.car-scene {
  position: absolute;
  bottom: calc(22% + 4px);
  left: 0;
  animation: carDrive 18s linear infinite;
  animation-delay: 1.5s;
  will-change: transform;
}

@keyframes carDrive {
  0%   { transform: translateX(-260px); opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 260px)); opacity: 0; }
}

.car-svg { width: 140px; height: 42px; display: block; }

/* Dust particles behind car */
.car-dust {
  position: absolute;
  right: 100%;
  bottom: 6px;
}

.dust {
  position: absolute;
  border-radius: 50%;
  background: oklch(0.65 0.06 50);
  filter: blur(6px);
  animation: dustFade 1.8s ease-out infinite;
}
.d1 { width: 18px; height: 18px; bottom: 2px; right: 0px; animation-delay: 0s; }
.d2 { width: 26px; height: 26px; bottom: 0;   right: 10px; animation-delay: 0.5s; }
.d3 { width: 14px; height: 14px; bottom: 4px; right: 22px; animation-delay: 1s; }

@keyframes dustFade {
  0%   { transform: translate(0, 0) scale(0.4); opacity: 0.7; }
  100% { transform: translate(-50px, -30px) scale(3); opacity: 0; }
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0.05 0.010 42 / 0.10) 0%,
    oklch(0.05 0.010 42 / 0.05) 35%,
    oklch(0.05 0.010 42 / 0.35) 75%,
    oklch(0.05 0.010 42 / 0.65) 100%
  );
  pointer-events: none;
}

/* Video wrap (commented out in HTML, kept for reference) */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px var(--sp-lg) var(--sp-2xl);
  max-width: 860px;
  width: 100%;
  animation: heroEnter 1.2s var(--ease-out) both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: oklch(0.73 0.148 72 / 0.14);
  border: 1px solid oklch(0.73 0.148 72 / 0.35);
  color: var(--c-gold);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5em 1.2em;
  border-radius: 2px;
  margin-bottom: var(--sp-md);
}
.hero-badge [data-lucide], .hero-badge svg { width: 13px; height: 13px; }

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--sp-md);
}

.hero-t1 {
  color: var(--c-text);
  display: block;
}

.hero-t2 {
  color: var(--c-gold);
  display: block;
  /* Slightly offset for rhythm */
  margin-top: -0.04em;
}

/* Arabic hero title */
html[dir="rtl"] .hero-title {
  font-family: var(--f-body);
  font-weight: 900;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  color: var(--c-text-2);
  letter-spacing: 0.04em;
  margin-bottom: 0.3em;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: var(--c-text-3);
  margin-bottom: var(--sp-lg);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

/* Trust stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  padding-top: var(--sp-lg);
  border-top: 1px solid oklch(0.93 0.008 75 / 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
}

.stat-n {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}

.stat-l {
  font-size: clamp(0.65rem, 1.1vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: oklch(0.93 0.008 75 / 0.15);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: oklch(0.93 0.008 75 / 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--c-gold); }
.hero-scroll [data-lucide], .hero-scroll svg { width: 24px; height: 24px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 600px) {
  .hero-content { padding-top: 90px; }
  .hero-stats { gap: var(--sp-md); }
  .hero-stat-sep { height: 28px; }
}


/* ════════════════════════════════════════
   REVIEWS TICKER
════════════════════════════════════════ */
.reviews-section {
  padding: var(--sp-xl) 0;
  background: var(--c-deep);
  border-top: 1px solid var(--c-rim);
  border-bottom: 1px solid var(--c-rim);
  overflow: hidden;
}

.reviews-header {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-lg);
  padding: 0 var(--sp-lg);
}

.reviews-g-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--c-ground);
  border: 1px solid var(--c-rim);
  padding: 0.6em 1.4em;
  border-radius: 4px;
}

.reviews-g-info { display: flex; flex-direction: column; gap: 0.1em; }

.reviews-stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.reviews-g-info span {
  font-size: 0.78rem;
  color: var(--c-text-2);
  font-weight: 500;
}

/* Ticker layout */
.ticker-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.ticker-row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.ticker-row--left  .ticker-track { animation: tickLeft  35s linear infinite; }
.ticker-row--right .ticker-track { animation: tickRight 35s linear infinite; }

@keyframes tickLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tickRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.ticker-track:hover { animation-play-state: paused; }

/* Review card */
.review-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--c-ground);
  border: 1px solid var(--c-rim);
  border-radius: 6px;
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-gold-lo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-void);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-text);
}

.review-date {
  font-size: 0.72rem;
  color: var(--c-text-3);
}

.review-stars { color: var(--c-gold); font-size: 0.82rem; letter-spacing: 0.03em; }

.review-text {
  font-size: 0.83rem;
  color: var(--c-text-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ════════════════════════════════════════
   TOURS
════════════════════════════════════════ */
.tours-section {
  padding: var(--sp-2xl) var(--sp-lg);
  max-width: 1280px;
  margin: 0 auto;
}

/* Asymmetric grid: 3 cols, wide cards span 2 */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Wide cards */
.tour-card--wide { grid-column: span 2; }

/* Card base */
.tour-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background-color: var(--c-deep);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.tour-card--wide { aspect-ratio: 16 / 8; }

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px oklch(0.05 0.010 42 / 0.7);
}

/* Card overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.06 0.010 40 / 0.92) 0%,
    oklch(0.06 0.010 40 / 0.55) 45%,
    oklch(0.06 0.010 40 / 0.15) 100%
  );
  transition: background 0.3s;
}

.card-overlay--premium {
  background: linear-gradient(
    to top,
    oklch(0.30 0.10 55 / 0.90) 0%,
    oklch(0.15 0.05 45 / 0.65) 50%,
    oklch(0.06 0.010 40 / 0.20) 100%
  );
}

.tour-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    oklch(0.06 0.010 40 / 0.95) 0%,
    oklch(0.06 0.010 40 / 0.70) 55%,
    oklch(0.06 0.010 40 / 0.25) 100%
  );
}

/* Card body */
.card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-md);
  gap: 0.4em;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: oklch(0.73 0.148 72 / 0.18);
  border: 1px solid oklch(0.73 0.148 72 / 0.40);
  color: var(--c-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 2px;
  align-self: flex-start;
  margin-bottom: 0.2em;
}
.card-tag [data-lucide], .card-tag svg { width: 11px; height: 11px; }

.card-title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.card-title .en {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--c-text);
  transition: color 0.2s;
}
.tour-card:hover .card-title .en { color: var(--c-gold-hi); }

.card-title .ar {
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 600;
  color: var(--c-gold);
  opacity: 0.8;
}

/* In Arabic mode, flip emphasis */
html[dir="rtl"] .card-title .ar { font-size: clamp(1.1rem, 2.5vw, 1.45rem); opacity: 1; }
html[dir="rtl"] .card-title .en { font-size: clamp(0.78rem, 1.4vw, 0.92rem); color: var(--c-gold); opacity: 0.8; }

.card-desc {
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  color: oklch(0.85 0.010 72);
  line-height: 1.5;
  max-width: 40ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.tour-card:hover .card-desc {
  opacity: 1;
  transform: translateY(0);
}

.card-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--c-gold);
  color: var(--c-void);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5em 1.1em;
  border-radius: 3px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.05s var(--ease-out), transform 0.3s 0.05s var(--ease-out), background 0.2s;
  white-space: nowrap;
}
.card-book:hover { background: var(--c-gold-hi); }
.card-book [data-lucide], .card-book svg { width: 13px; height: 13px; }

.tour-card:hover .card-book {
  opacity: 1;
  transform: translateY(0);
}

/* Also show booking button on touch devices (no hover) */
@media (hover: none) {
  .card-desc, .card-book { opacity: 1; transform: translateY(0); }
}

/* Responsive tours grid */
@media (max-width: 860px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card--wide { grid-column: span 2; }
  .tour-card--wide { aspect-ratio: 16 / 8; }
}

@media (max-width: 520px) {
  .tours-section { padding-left: var(--sp-md); padding-right: var(--sp-md); }
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tour-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .tour-card { aspect-ratio: 4/3; }
}


/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery-section {
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--c-deep);
}

.gallery-section .section-header { max-width: 1280px; margin: 0 auto var(--sp-xl); }

/* Editorial mosaic layout */
.gallery-mosaic {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 10px;
}

.g-item { overflow: hidden; border-radius: 4px; background: var(--c-ground); }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: saturate(0.8) brightness(0.9);
}
.g-item:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }

/* Mosaic placement */
.g-item--1 { grid-column: 1 / 6;  grid-row: 1 / 2; }
.g-item--2 { grid-column: 6 / 9;  grid-row: 1 / 3; }
.g-item--3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.g-item--4 { grid-column: 1 / 4;  grid-row: 2 / 3; }
.g-item--5 { grid-column: 4 / 6;  grid-row: 2 / 3; }
.g-item--6 { grid-column: 9 / 13; grid-row: 2 / 3; }

@media (max-width: 860px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .g-item--1 { grid-column: 1/3; grid-row: 1/2; }
  .g-item--2 { grid-column: 1/2; grid-row: 2/3; }
  .g-item--3 { grid-column: 2/3; grid-row: 2/3; }
  .g-item--4 { grid-column: 1/2; grid-row: 3/4; }
  .g-item--5 { grid-column: 2/3; grid-row: 3/4; }
  .g-item--6 { display: none; }
}

@media (max-width: 480px) {
  .gallery-section { padding-left: var(--sp-md); padding-right: var(--sp-md); }
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .g-item--1 { grid-column: 1/2; grid-row: 1/2; }
  .g-item--2 { grid-column: 1/2; grid-row: 2/3; }
  .g-item--3 { grid-column: 1/2; grid-row: 3/4; }
  .g-item--4 { grid-column: 1/2; grid-row: 4/5; }
  .g-item--5 { display: none; }
}


/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-section {
  padding: var(--sp-2xl) var(--sp-lg);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.about-text { display: flex; flex-direction: column; gap: var(--sp-md); }

.about-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
}

html[dir="rtl"] .about-title { font-family: var(--f-body); font-weight: 900; }

.about-body {
  color: var(--c-text-2);
  max-width: 52ch;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.6vw, 1.02rem);
}

/* Features list */
.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding-top: var(--sp-xs);
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--c-rim);
}
.feat:last-child { border-bottom: none; }

.feat [data-lucide], .feat svg {
  width: 22px; height: 22px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.feat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.2em;
}

.feat span {
  font-size: 0.85rem;
  color: var(--c-text-2);
}

@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .about-section { padding-left: var(--sp-md); padding-right: var(--sp-md); }
}


/* ════════════════════════════════════════
   WHATSAPP CTA
════════════════════════════════════════ */
.cta-section {
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--c-deep);
  border-top: 1px solid var(--c-rim);
  border-bottom: 1px solid var(--c-rim);
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

.cta-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--c-text);
}

html[dir="rtl"] .cta-title { font-family: var(--f-body); font-weight: 900; }

.cta-sub {
  color: var(--c-text-2);
  max-width: 44ch;
  text-align: center;
}

/* Big WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-wa);
  color: white;
  padding: 1em 2em;
  border-radius: 6px;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  box-shadow: 0 4px 20px oklch(0.66 0.21 145 / 0.25);
  margin-top: var(--sp-xs);
}

.btn-whatsapp:hover {
  background: var(--c-wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px oklch(0.66 0.21 145 / 0.40);
}

.btn-wa-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0.1em; }
.btn-wa-main { font-size: 1em; line-height: 1; }
.btn-wa-sub { font-size: 0.72em; font-weight: 400; opacity: 0.85; }

/* Social links */
.social-links {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-xs);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--c-text-3);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4em 0.9em;
  border: 1px solid var(--c-rim);
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-link:hover {
  color: var(--c-gold);
  border-color: oklch(0.73 0.148 72 / 0.5);
  background: oklch(0.73 0.148 72 / 0.06);
}

.social-link [data-lucide], .social-link svg { width: 17px; height: 17px; }

.cta-note {
  font-size: 0.75rem;
  color: var(--c-text-3);
  text-align: center;
}


/* ════════════════════════════════════════
   MAP
════════════════════════════════════════ */
.map-section {
  background: var(--c-void);
  border-top: 1px solid var(--c-rim);
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--sp-lg) var(--sp-lg) var(--sp-md);
  color: var(--c-text-2);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-header [data-lucide], .map-header svg { width: 16px; height: 16px; color: var(--c-gold); }

.map-embed {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-lg) var(--sp-xl);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border-radius: 6px;
  display: block;
  border: 1px solid var(--c-rim);
  filter: grayscale(0.2) brightness(0.9);
  transition: filter 0.3s;
}
.map-embed iframe:hover { filter: none; }

@media (max-width: 480px) {
  .map-embed { padding-left: var(--sp-md); padding-right: var(--sp-md); }
  .map-embed iframe { height: 300px; }
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--c-deep);
  border-top: 1px solid var(--c-rim);
  padding: var(--sp-xl) var(--sp-lg) 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--c-rim);
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: var(--sp-sm); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--c-text-3);
  max-width: 30ch;
  line-height: 1.55;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.6em; }
.footer-nav a {
  font-size: 0.88rem;
  color: var(--c-text-3);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--c-gold); }

.footer-contact { display: flex; flex-direction: column; gap: var(--sp-sm); }

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-wa);
  transition: opacity 0.2s;
}
.footer-wa:hover { opacity: 0.8; }

.footer-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  color: var(--c-text-3);
  transition: color 0.2s;
}
.footer-maps:hover { color: var(--c-gold); }
.footer-maps [data-lucide], .footer-maps svg { width: 14px; height: 14px; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer-bottom span { font-size: 0.78rem; color: var(--c-text-3); }

.footer-social { display: flex; gap: var(--sp-sm); }
.footer-social a {
  color: var(--c-text-3);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--c-gold); }
.footer-social [data-lucide], .footer-social svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }
  .footer-brand { grid-column: 1/3; }
}

@media (max-width: 480px) {
  .footer { padding-left: var(--sp-md); padding-right: var(--sp-md); }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ── SCROLL-TRIGGERED FADE-IN ─────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FLOATING WHATSAPP BUTTON ─────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.wa-float-inner {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.50);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  z-index: 2;
}

.wa-float:hover .wa-float-inner {
  transform: scale(1.10);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

.wa-float-inner svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  flex-shrink: 0;
}

.wa-float::before,
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulseExpand 2.4s ease-out infinite;
  z-index: 1;
}
.wa-float::after {
  animation-delay: 0.8s;
}

@keyframes waPulseExpand {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.75); opacity: 0;   }
  100% { transform: scale(1.75); opacity: 0;   }
}

.wa-float-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-deep);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4em 0.85em;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  border: 1px solid var(--c-rim);
}
.wa-float-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--c-rim);
}
.wa-float:hover .wa-float-label { opacity: 1; }

@media (max-width: 480px) {
  .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .wa-float-inner { width: 54px; height: 54px; }
  .wa-float-inner svg { width: 28px; height: 28px; }
}
