/* ============================================================
   الشامل للسفر والسياحة — Design System
   Premium bilingual (AR/EN) · Light/Dark · RTL-first
   Brand: Navy #1C2C51 · Burnt Orange #C55C1E · Gold #E5A632
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand scales */
  --navy-900: #0e1832;
  --navy-800: #14213f;
  --navy-700: #1c2c51;   /* primary */
  --navy-600: #263a68;
  --navy-500: #34497c;
  --navy-400: #4c628f;

  --orange-600: #b04c17;
  --orange-500: #c55c1e;  /* secondary */
  --orange-400: #e0722c;
  --orange-300: #f18a44;

  --gold-500: #e5a632;    /* accent */
  --gold-400: #f0bb54;

  /* Semantic (light default) */
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f3f9;
  --border: #e5e8f0;
  --border-strong: #d3d8e6;
  --text: #14213f;
  --text-soft: #45506b;
  --text-mut: #6c778f;
  --brand: var(--navy-700);
  --brand-ink: #ffffff;
  --accent: var(--orange-500);
  --accent-ink: #ffffff;
  --gold: var(--gold-500);
  --ring: color-mix(in srgb, var(--orange-500) 45%, transparent);

  --shadow-sm: 0 1px 2px rgba(20,33,63,.06), 0 1px 3px rgba(20,33,63,.05);
  --shadow-md: 0 6px 20px -6px rgba(20,33,63,.16), 0 2px 6px rgba(20,33,63,.06);
  --shadow-lg: 0 24px 60px -18px rgba(20,33,63,.28), 0 8px 24px -12px rgba(20,33,63,.12);
  --shadow-glow: 0 20px 55px -18px rgba(197,92,30,.45);

  --grad-brand: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  --grad-accent: linear-gradient(120deg, var(--orange-500), var(--gold-500));
  --grad-hero: linear-gradient(180deg, rgba(14,24,50,.30) 0%, rgba(14,24,50,.72) 60%, rgba(14,24,50,.94) 100%);

  /* Radii */
  --r-xs: 8px; --r-sm: 12px; --r-md: 16px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;

  /* Spacing / rhythm */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  /* Fonts */
  --font-ar: "Almarai", "Tajawal", system-ui, "Segoe UI", sans-serif;
  --font-en: "Sora", "Manrope", system-ui, -apple-system, sans-serif;
  --font: var(--font-ar);

  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="dark"] {
  --bg: #0b1226;
  --bg-soft: #0e1730;
  --bg-elev: #121d3a;
  --surface: #131f3f;
  --surface-2: #1a274b;
  --border: #223257;
  --border-strong: #2c3e6b;
  --text: #eef2fb;
  --text-soft: #b9c3dc;
  --text-mut: #8592b3;
  --brand: #ffffff;
  --brand-ink: var(--navy-700);
  --accent: var(--orange-400);
  --accent-ink: #1a0f06;
  --ring: color-mix(in srgb, var(--orange-400) 55%, transparent);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 26px -8px rgba(0,0,0,.55);
  --shadow-lg: 0 30px 70px -22px rgba(0,0,0,.7);
  --grad-brand: linear-gradient(135deg, #16234a, #0d1631);
}

html[lang="en"] { --font: var(--font-en); }

/* ---------- 2. Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } *{ animation-duration:.001ms!important; transition-duration:.001ms!important; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .3s var(--ease);
}
img,svg,video { display:block; max-width:100%; height:auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px var(--ring); border-radius: var(--r-xs); }

h1,h2,h3,h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.01em; color: var(--text); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { letter-spacing: 0; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1360px; }
.section { padding-block: var(--section-y); position: relative; }
.section-soft { background: var(--bg-soft); }
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.cols-2 { grid-template-columns: repeat(2,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 960px){ .cols-3,.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .cols-2,.cols-3,.cols-4 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.stack { display:flex; flex-direction:column; }
.flex { display:flex; }
.wrap { flex-wrap: wrap; }
.items-center { align-items:center; }
.justify-between { justify-content: space-between; }
.gap-sm{ gap:.5rem } .gap{ gap:1rem } .gap-lg{ gap:1.5rem }
.hidden { display:none !important; }

/* ---------- 4. Typography utilities ---------- */
.display { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08; }
.h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--text-soft); font-weight: 500; }
.muted { color: var(--text-mut); }
.soft { color: var(--text-soft); }
.balance { text-wrap: balance; }
.accent-text { color: var(--accent); }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: .4rem .85rem;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-radius: var(--r-pill);
}
html[lang="ar"] .kicker { text-transform: none; letter-spacing: 0; font-size: .85rem; }
.kicker::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--accent); }

.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2rem,4vw,3.2rem); }
.section-head.start { margin-inline: 0; text-align: start; }
.section-head .h2 { margin-block: .7rem .6rem; }

.gold-line { width: 64px; height: 3px; border-radius: 3px; background: var(--grad-accent); }
.section-head.center .gold-line { margin-inline: auto; }

/* ---------- 5. Buttons (min 44px tap targets) ---------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: 0 1.5rem;
  font-weight: 700; font-size: .98rem;
  border-radius: var(--r-pill); border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-accent); color: #fff; box-shadow: 0 8px 22px -10px rgba(197,92,30,.6); }
.btn-brand { background: var(--brand); color: var(--brand-ink); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }
.btn-light { background: rgba(255,255,255,.14); color:#fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); box-shadow: none; }
.btn-lg { min-height: 56px; padding: 0 2rem; font-size: 1.05rem; }
.btn-sm { min-height: 44px; padding: 0 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-whatsapp { background: #25d366; color:#06331b; }
.btn-whatsapp:hover{ box-shadow: 0 10px 26px -10px rgba(37,211,102,.6); }

.link-arrow { display:inline-flex; align-items:center; gap:.4rem; color: var(--accent); font-weight:700; min-height:44px; }
.link-arrow svg { width:16px;height:16px; transition: transform .2s var(--ease); }
html[dir="rtl"] .link-arrow svg { transform: scaleX(-1); }
.link-arrow:hover svg { transform: translateX(4px); }
html[dir="rtl"] .link-arrow:hover svg { transform: scaleX(-1) translateX(4px); }

/* ---------- 6. Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width:100%; }
.brand { display: flex; align-items: center; gap: .65rem; min-height: 48px; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-size: 1.02rem; font-weight: 800; color: var(--text); }
.brand-name span { font-size: .64rem; letter-spacing: .18em; color: var(--accent); font-weight: 700; }
html[lang="ar"] .brand-name span { letter-spacing: .04em; font-size:.7rem; }

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a { padding: .6rem .85rem; min-height: 44px; display: inline-flex; align-items: center; border-radius: var(--r-sm); font-weight: 600; font-size: .95rem; color: var(--text-soft); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: .4rem; }

.icon-btn {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); border: 1px solid var(--border); background: var(--surface);
  color: var(--text-soft); transition: all .2s var(--ease);
}
.icon-btn:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; }
.lang-btn { width:auto; padding-inline:.85rem; gap:.4rem; font-weight:700; font-size:.85rem; }

.burger { display: none; }
.mobile-panel { display: none; }

@media (max-width: 1024px){
  .nav-links, .nav-actions .desktop-cta { display: none; }
  .burger { display: inline-flex; }
  .mobile-panel {
    display: block; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 899;
    background: var(--bg); padding: 1.5rem var(--gutter) 2rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    overflow-y: auto;
  }
  .mobile-panel.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-panel a.m-link { display:flex; align-items:center; justify-content: space-between; padding: 1rem .5rem; min-height: 56px; font-size: 1.15rem; font-weight: 700; border-bottom: 1px solid var(--border); }
  .mobile-panel a.m-link svg { width:18px;height:18px; color: var(--text-mut); }
  html[dir="rtl"] .mobile-panel a.m-link svg { transform: scaleX(-1); }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after { content:""; position: absolute; inset: 0; z-index: -1; background: var(--grad-hero); }
.hero-inner { padding-block: clamp(3rem, 8vw, 6rem); width: 100%; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6.4vw, 5rem); max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero .lead { color: rgba(255,255,255,.9); max-width: 52ch; margin-top: 1.1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-stats { display:flex; flex-wrap: wrap; gap: clamp(1.5rem,4vw,3rem); margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero-stats .stat b { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight:800; display:block; color:#fff; }
.hero-stats .stat span { font-size:.9rem; color: rgba(255,255,255,.78); }
.hero-scroll { position:absolute; inset-inline-end: var(--gutter); bottom: 1.5rem; display:flex; flex-direction:column; align-items:center; gap:.4rem; color: rgba(255,255,255,.7); font-size:.72rem; letter-spacing:.15em; }
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero-scroll .mouse::before { content:""; position:absolute; top:7px; inset-inline-start:50%; transform: translateX(-50%); width:4px; height:8px; background:#fff; border-radius:2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;top:7px} 40%{opacity:1} 80%{opacity:0;top:18px} 100%{opacity:0} }

/* ---------- 8. Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { color: var(--text-soft); font-size: .98rem; }
.card-num { position:absolute; inset-block-start: 1rem; inset-inline-end: 1.2rem; font-size: 3rem; font-weight: 800; color: color-mix(in srgb, var(--accent) 12%, transparent); line-height:1; }

/* Feature list card (why us) */
.feature { display:flex; gap: 1rem; align-items:flex-start; }
.feature .fi { flex: 0 0 auto; width:48px;height:48px;border-radius: var(--r-md); display:grid;place-items:center; background: var(--grad-accent); color:#fff; }
.feature .fi svg{ width:22px;height:22px; }
.feature h3 { font-size: 1.12rem; margin-bottom:.3rem; }
.feature p { color: var(--text-soft); font-size:.96rem; }

/* Stat card */
.statcard { text-align:center; padding: 1.75rem 1rem; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); }
.statcard b { display:block; font-size: clamp(2rem,4vw,2.8rem); font-weight:800; background: var(--grad-accent); -webkit-background-clip:text; background-clip:text; color: transparent; }
.statcard span { color: var(--text-mut); font-weight:600; font-size:.95rem; }

/* ---------- 9. Package cards ---------- */
.pkg { display:flex; flex-direction:column; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-media { position:relative; aspect-ratio: 16/10; overflow:hidden; }
.pkg-media img { width:100%;height:100%;object-fit:cover; transition: transform .6s var(--ease); }
.pkg:hover .pkg-media img { transform: scale(1.07); }
.pkg-tag { position:absolute; inset-block-start:.9rem; inset-inline-start:.9rem; background: rgba(14,24,50,.82); color:#fff; padding:.35rem .8rem; border-radius: var(--r-pill); font-size:.78rem; font-weight:700; backdrop-filter: blur(4px); }
.pkg-fav { position:absolute; inset-block-start:.9rem; inset-inline-end:.9rem; width:40px;height:40px;border-radius:50%; background: rgba(255,255,255,.9); display:grid;place-items:center; color: var(--navy-700); border:none; }
.pkg-body { padding: 1.3rem; display:flex; flex-direction:column; gap:.7rem; flex:1; }
.pkg-meta { display:flex; flex-wrap:wrap; gap:.4rem 1rem; font-size:.85rem; color: var(--text-mut); }
.pkg-meta span{ display:inline-flex; align-items:center; gap:.35rem; }
.pkg-meta svg{ width:15px;height:15px; }
.pkg h3 { font-size:1.15rem; }
.pkg-foot { margin-top:auto; display:flex; align-items:flex-end; justify-content:space-between; gap:.75rem; padding-top:.6rem; border-top:1px solid var(--border); }
.pkg-price b { font-size:1.5rem; font-weight:800; color: var(--text); }
.pkg-price small{ color: var(--text-mut); font-size:.78rem; display:block; }
.pkg-price .cur { font-size:.9rem; font-weight:700; color: var(--accent); }
.rating { display:inline-flex; align-items:center; gap:.25rem; color: var(--gold-500); font-weight:700; font-size:.9rem; }
.rating svg{ width:15px;height:15px; fill: currentColor; }

/* Filters bar */
.filters { display:flex; flex-wrap:wrap; gap:.75rem; align-items:center; padding: 1rem; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.field { position: relative; display:flex; flex-direction:column; gap:.4rem; }
.field label { font-size:.82rem; font-weight:700; color: var(--text-soft); }
.input, .select, .textarea {
  width:100%; min-height:48px; padding: .7rem 1rem;
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  color: var(--text); font: inherit; font-size:.96rem;
  transition: border-color .2s, box-shadow .2s;
}
.textarea{ min-height: 130px; resize: vertical; line-height:1.6; }
.input:focus, .select:focus, .textarea:focus { outline:none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--ring); }
.input::placeholder, .textarea::placeholder { color: var(--text-mut); }
.search-wrap { position:relative; flex:1; min-width: 220px; }
.search-wrap svg { position:absolute; inset-inline-start: 14px; top:50%; transform: translateY(-50%); width:18px;height:18px; color: var(--text-mut); pointer-events:none; }
.search-wrap .input { padding-inline-start: 44px; }

/* Chips */
.chips { display:flex; flex-wrap:wrap; gap:.5rem; }
.chip { min-height:44px; padding:.5rem 1rem; border-radius: var(--r-pill); border:1px solid var(--border-strong); background: var(--surface); color: var(--text-soft); font-weight:600; font-size:.9rem; transition: all .2s; }
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }

/* ---------- 10. Logo marquee ---------- */
.marquee { overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display:flex; gap: 3.5rem; width: max-content; animation: scrollX 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 46px; width:auto; object-fit:contain; filter: grayscale(1); opacity:.62; transition: filter .3s, opacity .3s; flex:0 0 auto; }
[data-theme="dark"] .marquee-track img { filter: grayscale(1) brightness(0) invert(.85); opacity:.5; }
.marquee-track img:hover { filter:none; opacity:1; }
[data-theme="dark"] .marquee-track img:hover { filter:none; opacity:1; }
@keyframes scrollX { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* Logo grid (clients page) */
.logo-cell { display:grid; place-items:center; padding: 1.5rem; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-md); min-height: 120px; transition: all .3s var(--ease); }
.logo-cell:hover { border-color: color-mix(in srgb,var(--accent) 40%, var(--border)); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.logo-cell img { max-height: 68px; width:auto; object-fit:contain; filter: grayscale(1); opacity:.75; transition: all .3s; }
.logo-cell:hover img { filter:none; opacity:1; }
[data-theme="dark"] .logo-cell img { filter: grayscale(1) brightness(0) invert(.9); opacity:.6; }
[data-theme="dark"] .logo-cell:hover img { filter:none; opacity:1; background:#fff; border-radius:8px; padding:4px; }

/* ---------- 11. Testimonials ---------- */
.quote-card { background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); position:relative; }
.quote-card::before { content:"\201D"; position:absolute; inset-block-start: -.3rem; inset-inline-start: 1.2rem; font-family: Georgia, serif; font-size: 5rem; color: color-mix(in srgb, var(--accent) 22%, transparent); line-height:1; }
.quote-card p { color: var(--text-soft); font-size:1.02rem; position:relative; }
.quote-author { display:flex; align-items:center; gap:.8rem; margin-top:1.2rem; }
.quote-author .av { width:46px;height:46px;border-radius:50%; background: var(--grad-brand); color:#fff; display:grid;place-items:center; font-weight:800; }
.quote-author b { display:block; font-size:.98rem; }
.quote-author span { color: var(--text-mut); font-size:.85rem; }

/* ---------- 12. Accordion / itinerary ---------- */
.accordion { border:1px solid var(--border); border-radius: var(--r-lg); overflow:hidden; background: var(--surface); }
.acc-item + .acc-item { border-top:1px solid var(--border); }
.acc-head { width:100%; display:flex; align-items:center; gap:1rem; padding: 1.2rem 1.4rem; background:transparent; text-align:start; min-height: 64px; }
.acc-head .day { flex:0 0 auto; width:44px;height:44px;border-radius: var(--r-sm); background: var(--grad-accent); color:#fff; display:grid;place-items:center; font-weight:800; font-size:.85rem; }
.acc-head h3 { flex:1; font-size:1.08rem; }
.acc-head .chev { color: var(--text-mut); transition: transform .3s var(--ease); }
.acc-item.open .acc-head .chev { transform: rotate(180deg); }
.acc-body { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.acc-body-inner { padding: 0 1.4rem 1.4rem; color: var(--text-soft); }
.acc-body-inner ul { display:flex; flex-direction:column; gap:.6rem; }
.acc-body-inner li { display:flex; gap:.6rem; align-items:flex-start; }
.acc-body-inner li svg{ width:18px;height:18px;color: var(--accent); flex:0 0 auto; margin-top:3px; }

/* ---------- 13. Timeline (process) ---------- */
.timeline { display:grid; gap: 1.25rem; }
.tl-step { display:flex; gap:1.2rem; align-items:flex-start; padding:1.5rem; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); transition: all .3s var(--ease); }
.tl-step:hover { border-color: color-mix(in srgb,var(--accent) 35%,var(--border)); box-shadow: var(--shadow-md); }
.tl-num { flex:0 0 auto; width:56px;height:56px;border-radius:50%; background: var(--grad-brand); color:#fff; display:grid;place-items:center; font-weight:800; font-size:1.3rem; box-shadow: var(--shadow-md); }
.tl-step h3 { font-size:1.2rem; margin-bottom:.35rem; }

/* ---------- 14. CTA band ---------- */
.cta-band { position:relative; overflow:hidden; border-radius: var(--r-xl); padding: clamp(2.5rem,5vw,4.5rem); background: var(--grad-brand); color:#fff; text-align:center; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px circle at 80% -10%, rgba(229,166,50,.28), transparent 55%), radial-gradient(500px circle at 0% 120%, rgba(197,92,30,.32), transparent 50%); }
.cta-band > * { position:relative; }
.cta-band h2 { color:#fff; font-size: clamp(1.8rem,4vw,2.8rem); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 46ch; margin: 1rem auto 2rem; }
.cta-actions { display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; }

/* ---------- 15. Split / feature media ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.split.reverse { direction: initial; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--r-xl); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split-media img { width:100%;height:100%;object-fit:cover; }
.check-list { display:flex; flex-direction:column; gap: .9rem; margin-top:1.5rem; }
.check-list li { display:flex; gap:.7rem; align-items:flex-start; color: var(--text-soft); }
.check-list li .ck { flex:0 0 auto; width:26px;height:26px;border-radius:50%; background: color-mix(in srgb,var(--accent) 16%,transparent); color: var(--accent); display:grid;place-items:center; }
.check-list li .ck svg{ width:15px;height:15px; }

/* ---------- 16. Pricing / trip sidebar ---------- */
.price-box { position: sticky; top: calc(var(--nav-h) + 16px); background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-md); }
.price-row { display:flex; justify-content:space-between; gap:1rem; padding:.6rem 0; border-bottom:1px dashed var(--border); font-size:.95rem; }
.price-row.total { border-bottom:none; border-top:2px solid var(--border-strong); margin-top:.4rem; padding-top:1rem; font-size:1.25rem; font-weight:800; }
.price-row.total .cur { color: var(--accent); }

/* ---------- 17. Contact / info tiles ---------- */
.info-tile { display:flex; gap:1rem; align-items:flex-start; padding:1.3rem; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-md); }
.info-tile .it-ic { flex:0 0 auto; width:48px;height:48px;border-radius: var(--r-sm); background: color-mix(in srgb,var(--accent) 14%,transparent); color: var(--accent); display:grid;place-items:center; }
.info-tile .it-ic svg{ width:22px;height:22px; }
.info-tile b { display:block; margin-bottom:.15rem; }
.info-tile a, .info-tile p { color: var(--text-soft); }
.info-tile a:hover { color: var(--accent); }

/* ---------- 18. Footer ---------- */
.footer { background: var(--navy-900); color: #cfd7ea; padding-block: clamp(3rem,6vw,4.5rem) 0; margin-top: var(--section-y); }
[data-theme="dark"] .footer { background: #070d1e; border-top:1px solid var(--border); }
.footer h4 { color:#fff; font-size:1rem; margin-bottom:1.1rem; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap:2rem; } }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer a { color:#aab5d1; min-height: 40px; display:inline-flex; align-items:center; transition: color .2s; }
.footer a:hover { color: var(--gold-400); }
.footer .fbrand img { width:48px;height:48px; }
.footer .fbrand p { color:#9aa6c6; margin-top:1rem; max-width: 40ch; font-size:.95rem; }
.footer-social { display:flex; gap:.6rem; margin-top:1.3rem; }
.footer-social a { width:42px;height:42px;border-radius:50%; background: rgba(255,255,255,.08); display:grid;place-items:center; color:#cfd7ea; }
.footer-social a:hover { background: var(--accent); color:#fff; }
.footer-social svg{ width:18px;height:18px; }
.footer-links { display:flex; flex-direction:column; }
.footer-bottom { margin-top: 3rem; border-top:1px solid rgba(255,255,255,.1); padding-block: 1.5rem; display:flex; flex-wrap:wrap; gap: 1rem; justify-content: space-between; align-items:center; font-size:.85rem; color:#8a97b8; }
.footer-bottom .badges { display:flex; gap:1rem; flex-wrap:wrap; }

/* ---------- 19. Breadcrumb / page hero ---------- */
.page-hero { position:relative; padding-block: clamp(4rem,9vw,7rem) clamp(2.5rem,5vw,3.5rem); color:#fff; overflow:hidden; }
.page-hero::after{ content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(14,24,50,.72), rgba(14,24,50,.92)); }
.page-hero .bg { position:absolute; inset:0; z-index:-2; }
.page-hero .bg img{ width:100%;height:100%;object-fit:cover; }
.page-hero h1 { color:#fff; font-size: clamp(2.2rem,5vw,3.6rem); }
.page-hero .lead { color: rgba(255,255,255,.85); }
.crumb { display:flex; gap:.5rem; align-items:center; font-size:.88rem; color: rgba(255,255,255,.7); margin-bottom:1rem; }
.crumb a:hover { color:#fff; }
.crumb svg{ width:14px;height:14px; }
html[dir="rtl"] .crumb svg{ transform: scaleX(-1); }

/* ---------- 20. Misc ---------- */
.badge-soft { display:inline-flex; align-items:center; gap:.4rem; padding:.3rem .7rem; border-radius: var(--r-pill); font-size:.8rem; font-weight:700; background: color-mix(in srgb,var(--accent) 12%,transparent); color: var(--accent); }
.divider { height:1px; background: var(--border); border:none; margin-block: 2rem; }
.motif { position:absolute; opacity:.05; pointer-events:none; color: var(--accent); }
.toast-wrap { position: fixed; inset-block-end: 1.5rem; inset-inline: 0; display:flex; justify-content:center; z-index: 9999; pointer-events:none; }
.toast { background: var(--navy-800); color:#fff; padding: .9rem 1.4rem; border-radius: var(--r-pill); box-shadow: var(--shadow-lg); display:flex; align-items:center; gap:.6rem; transform: translateY(20px); opacity:0; transition: all .35s var(--ease); pointer-events:auto; border:1px solid rgba(255,255,255,.12); }
.toast.show { transform:none; opacity:1; }
.toast svg{ width:18px;height:18px;color: #25d366; }

/* Reveal on scroll — only hide when JS is active (no-JS shows everything) */
html.js [data-reveal] { opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js [data-reveal].in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ html.js [data-reveal]{ opacity:1; transform:none; } }
[data-reveal][data-delay="1"]{ transition-delay:.08s } [data-reveal][data-delay="2"]{ transition-delay:.16s }
[data-reveal][data-delay="3"]{ transition-delay:.24s } [data-reveal][data-delay="4"]{ transition-delay:.32s }

/* ---------- Bilingual dual-content visibility ---------- */
html[lang="ar"] [data-lang="en"] { display: none !important; }
html[lang="en"] [data-lang="ar"] { display: none !important; }
/* English uses Latin font even inside an RTL/AR context where mixed */
[data-lang="en"] { font-family: var(--font-en); }

.no-scroll { overflow: hidden; }

/* Button spinner */
.spin { width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff; display: inline-block; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Included hotels (trip page) ---------- */
.hotel-item { display:flex; gap:1rem; align-items:center; padding:1rem 1.2rem; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-md); transition: border-color .25s, box-shadow .25s; }
.hotel-item:hover { border-color: color-mix(in srgb,var(--accent) 35%,var(--border)); box-shadow: var(--shadow-sm); }
.hotel-item .h-ic { flex:0 0 auto; width:48px;height:48px;border-radius: var(--r-sm); background: color-mix(in srgb,var(--accent) 13%,transparent); color: var(--accent); display:grid;place-items:center; }
.hotel-item .h-ic svg{ width:22px;height:22px; }
.hotel-item .h-main { flex:1; min-width:0; }
.hotel-item h4 { font-size:1.02rem; margin-bottom:.15rem; }
.hotel-item .h-stars { color: var(--gold-500); font-size:.85rem; letter-spacing:1px; }
.hotel-item .h-map { flex:0 0 auto; display:inline-flex; align-items:center; gap:.35rem; min-height:44px; padding:.4rem .8rem; border-radius: var(--r-pill); border:1px solid var(--border-strong); color: var(--text-soft); font-size:.85rem; font-weight:700; }
.hotel-item .h-map:hover { color: var(--accent); border-color: var(--accent); }
.hotel-item .h-map svg{ width:15px;height:15px; }

/* ---------- Included attractions / tickets ---------- */
.attraction { text-align:center; padding:1.4rem 1rem; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-md); transition: transform .25s var(--ease), box-shadow .25s; }
.attraction:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.attraction .a-ic { width:52px;height:52px;margin:0 auto .8rem; border-radius:50%; background: var(--grad-accent); color:#fff; display:grid;place-items:center; }
.attraction .a-ic svg{ width:24px;height:24px; }
.attraction b { display:block; font-size:.98rem; }
.attraction span { color: var(--text-mut); font-size:.82rem; }
.attraction .a-badge { display:inline-block; margin-top:.5rem; font-size:.72rem; font-weight:700; color: var(--accent); background: color-mix(in srgb,var(--accent) 12%,transparent); padding:.15rem .6rem; border-radius: var(--r-pill); }

/* ---------- "جديد" ribbon on package cards ---------- */
.pkg-new { position:absolute; inset-block-start:.9rem; inset-inline-end:.9rem; background: var(--grad-accent); color:#fff; padding:.3rem .7rem; border-radius: var(--r-pill); font-size:.72rem; font-weight:800; box-shadow: 0 4px 12px -4px rgba(197,92,30,.6); z-index:2; }

/* ---------- Airport-to-airport strip ---------- */
.a2a { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:1rem 2rem; padding:1.4rem 1.6rem; background: var(--grad-brand); color:#fff; border-radius: var(--r-lg); }
.a2a .a2a-item { display:inline-flex; align-items:center; gap:.6rem; font-weight:700; font-size:.95rem; }
.a2a .a2a-item svg{ width:22px;height:22px; color: var(--gold-400); }
.a2a .a2a-sep { opacity:.4; }

/* ---------- Floating action buttons ---------- */
.fab-wa {
  position: fixed; inset-block-end: 1.4rem; inset-inline-end: 1.4rem; z-index: 850;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 36px -8px rgba(37,211,102,.75); }
.fab-wa svg { width: 30px; height: 30px; }
@keyframes fabPulse { 0%,100%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5);} 50%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,0);} }
@media (prefers-reduced-motion: reduce){ .fab-wa{ animation: none; } }

.to-top {
  position: fixed; inset-block-end: 1.4rem; inset-inline-start: 1.4rem; z-index: 850;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: var(--brand-ink); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent); color: #fff; }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Modal (booking) — bg-black strong backdrop, z-9999 ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; padding: 1.2rem;
  background: rgba(8,12,26,.92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility .28s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto;
  background: var(--bg-elev); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 4vw, 2.4rem);
  transform: translateY(18px) scale(.98); transition: transform .3s var(--ease);
  position: relative;
}
.modal-overlay.open .modal { transform: none; }
.modal-x {
  position: absolute; inset-block-start: 1rem; inset-inline-end: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--surface-2); color: var(--text-soft); border: none;
  transition: background .2s, color .2s;
}
.modal-x:hover { background: var(--accent); color: #fff; }
.modal-x svg { width: 20px; height: 20px; }
.modal-eyebrow { display:inline-flex; align-items:center; gap:.5rem; color: var(--accent); font-weight:700; font-size:.85rem; margin-bottom:.5rem; }
.modal h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom:.4rem; }
.modal .modal-sub { color: var(--text-mut); font-size:.95rem; margin-bottom: 1.4rem; }
.modal .field { margin-bottom: 1rem; }
.modal-trip-chip { display:none; align-items:center; gap:.6rem; padding:.7rem 1rem; background: color-mix(in srgb,var(--accent) 10%,transparent); border:1px solid color-mix(in srgb,var(--accent) 26%,transparent); border-radius: var(--r-sm); margin-bottom:1.2rem; font-weight:700; }
.modal-trip-chip.show { display:flex; }
.modal-trip-chip svg { width:18px;height:18px; color:var(--accent); flex:0 0 auto; }

/* ---------- Mobile tuning ---------- */
@media (max-width: 680px){
  .hero { min-height: min(88vh, 760px); }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); max-width: 100%; }
  .hero .lead { max-width: 100%; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-stats { gap: 1.1rem 1.4rem; margin-top: 2rem; padding-top: 1.4rem; }
  .hero-stats .stat { flex: 1 1 40%; }
  .cta-band { padding: 2.2rem 1.4rem; }
  .price-box { position: static; }
  .split-media { aspect-ratio: 16/10; }
  .trip-incl, .check-list[style] { grid-template-columns: 1fr !important; }
}
@media (max-width: 420px){
  .brand-name span { display: none; }
  .nav-actions .lang-btn .lang-label { display: none; }
}

/* Skip link — translated out of view (no horizontal overflow) */
.skip { position:absolute; inset-inline-start:.75rem; top:.5rem; z-index:1000; background: var(--accent); color:#fff; padding:.6rem 1rem; border-radius: var(--r-sm); transform: translateY(-160%); transition: transform .2s var(--ease); }
.skip:focus { transform: none; }

/* Selection */
::selection { background: color-mix(in srgb,var(--accent) 30%, transparent); }
