/* ============================================================
   أجواء المكان — Ajwa Al-Makan
   Design system: 29LT Riwaya · palette (Charcoal / Japanese
   Indigo / Steel Teal / Foggy / Star Dust) · editorial layout
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face{
  font-family: "Fatimah";
  src: url("../fonts/FatimahArabicITF-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fatimah";
  src: url("../fonts/FatimahArabicITF-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fatimah";
  src: url("../fonts/FatimahArabicITF-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fatimah";
  src: url("../fonts/FatimahArabicITF-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}/* ---------- Tokens ---------- */
:root{
  /* Charcoal */
  --charcoal-900: #090909;
  --charcoal-850: #111111;
  --charcoal-800: #191919;
  --charcoal-700: #232323;
  --charcoal-600: #2c2c2c;
  --charcoal-500: #353535;

  /* Japanese Indigo */
  --indigo-900: #16303d;
  --indigo-800: #193746;
  --indigo-700: #1c3e4e;
  --indigo-600: #224d5f;
  --indigo-500: #255468;
  --indigo-400: #285c70;

  /* Steel Teal */
  --teal-700: #3f5a66;
  --teal-600: #486675;
  --teal-500: #517380;
  --teal-400: #60899b;
  --teal-300: #6692a4;
  --teal-200: #6c9bad;

  /* Foggy (warm sage) */
  --foggy-500: #9e9c8a;
  --foggy-400: #a8a692;
  --foggy-300: #b1af9a;
  --foggy-200: #c4c2aa;
  --foggy-100: #cdcab2;

  /* Star Dust */
  --dust-500: #cecac8;
  --dust-400: #d8d3d1;
  --dust-300: #e2ddda;
  --dust-200: #f2edea;
  --dust-100: #f9f3f1;
  --dust-050: #fffaf8;

  /* Semantic */
  --tint-rgb: 255, 250, 248;
  --bg: var(--charcoal-900);
  --bg-soft: var(--charcoal-800);
  --bg-panel: var(--charcoal-700);
  --ink: var(--dust-100);
  --ink-muted: #9a9793;
  --ink-faint: #6c6a67;
  --line: rgba(var(--tint-rgb), 0.10);
  --line-strong: rgba(var(--tint-rgb), 0.18);
  --accent: var(--teal-200);
  --accent-deep: var(--indigo-400);

  /* Fixed light ink for text over permanently-dark accent surfaces
     (ticket-stub badges, cart package summary, gradient buttons) —
     never flips with the theme */
  --on-dark: #fffaf8;
  --on-dark-muted: #e2ddda;
  --on-dark-faint: #cecac8;

  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 12px;
  --page-x: clamp(20px, 5vw, 84px);

  /* Editorial type scale */
  --t-display: clamp(3.2rem, 12vw, 10rem);
  --t-2xl: clamp(2.3rem, 6vw, 5.2rem);
  --t-xl: clamp(1.9rem, 4.2vw, 3.4rem);
  --t-l: clamp(1.45rem, 2.6vw, 2.15rem);
  --t-m: clamp(1.2rem, 1.9vw, 1.55rem);
  --t-s: clamp(1.05rem, 1.4vw, 1.2rem);
  --t-body: clamp(1.02rem, 1.15vw, 1.15rem);
  --t-cap: 0.82rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}/* ---------- Light theme ----------
   Surfaces (charcoal family) and ink (dust family) swap direction;
   brand accent hues (indigo / teal / foggy) stay fixed so gradients
   and imagery read the same in both themes. */
:root[data-theme="light"]{
  --charcoal-900: #faf7f4;
  --charcoal-850: #f4f0eb;
  --charcoal-800: #efe9e2;
  --charcoal-700: #e5ddd2;
  --charcoal-600: #d9cfc0;
  --charcoal-500: #c7baa5;

  --dust-500: #857a68;
  --dust-400: #6e6353;
  --dust-300: #564d40;
  --dust-200: #3a332a;
  --dust-100: #241f19;
  --dust-050: #17140f;

  --ink-muted: #7a6f5f;
  --ink-faint: #a89b86;
  --tint-rgb: 20, 16, 10;
  --accent: #2f5563;
  --accent-deep: #1c3e4e;
}
@media (prefers-color-scheme: light) {:root:not([data-theme]){
    --charcoal-900: #faf7f4;
    --charcoal-850: #f4f0eb;
    --charcoal-800: #efe9e2;
    --charcoal-700: #e5ddd2;
    --charcoal-600: #d9cfc0;
    --charcoal-500: #c7baa5;
    --dust-500: #857a68;
    --dust-400: #6e6353;
    --dust-300: #564d40;
    --dust-200: #3a332a;
    --dust-100: #241f19;
    --dust-050: #17140f;
    --ink-muted: #7a6f5f;
    --ink-faint: #a89b86;
    --tint-rgb: 20, 16, 10;
    --accent: #2f5563;
    --accent-deep: #1c3e4e;
  }}/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing: border-box; }html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Fatimah", "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}img,video{ max-width: 100%; display: block; }a{ color: inherit; text-decoration: none; }h1,h2,h3,h4{
  margin: 0;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}p{ margin: 0; }/* Keep dynamically hidden navigation and entry links hidden even when a
   component selector defines its own display mode. */
[hidden]{ display: none !important; }/* Justified copy (both edges) — only hero and footer; rest of site right-aligned */
.hero__sub,.footer__brand p{
  text-align: justify;
  text-justify: inter-word;
  text-align-last: start;
}::selection{ background: var(--teal-500); color: var(--on-dark); }/* ---------- Utility ---------- */
.wrap{ padding-inline: var(--page-x); }.max{ max-width: 1440px; margin-inline: auto; }.eyebrow{
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem; /* +15% */
  font-weight: 500;
  letter-spacing: normal; /* Arabic cursive — no forced tracking */
  color: var(--accent);
}/* Highlighted word inside headings (e.g. "لكن") */
.hl{
  color: var(--teal-200);
  text-decoration: underline;
  text-decoration-color: var(--teal-300);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}.section{ padding-block: clamp(64px, 9vw, 150px); position: relative; }.section--tight{ padding-block: clamp(48px, 6vw, 96px); }.section-head{ max-width: 62ch; margin-bottom: clamp(36px, 5vw, 64px); }.section-head h2{ font-size: var(--t-2xl); margin-top: 18px; }.title-lines{
  width: max-content;
  max-width: calc(100vw - (2 * var(--page-x)));
}.title-lines > span{
  display: block;
  white-space: nowrap;
}
@media (max-width: 620px) {.section-head h2.h2-2lines{ font-size: clamp(1.5rem, 6.4vw, 2.1rem); }.section-head h2.title-lines--problem{ font-size: clamp(1.08rem, 5.2vw, 1.55rem); }.section-head h2.title-lines--video{ font-size: clamp(1.55rem, 7vw, 2.1rem); }}.section-head p{
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: var(--t-m);
  max-width: 52ch;
}/* ---------- Buttons ---------- */
.btn{
  --pad: 0.95em 1.8em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: var(--pad);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}.btn:hover{ transform: translateY(-2px); }.btn:focus-visible{ outline: 3px solid var(--teal-300); outline-offset: 3px; }.btn--primary{ background: var(--dust-050); color: var(--charcoal-900); }.btn--primary:hover{ background: var(--dust-300); }.btn--ghost{ border-color: var(--line-strong); color: var(--ink); background: transparent; }.btn--ghost:hover{ border-color: var(--dust-200); background: rgba(var(--tint-rgb), 0.05); }.btn--teal{ background: var(--indigo-400); color: var(--on-dark); }.btn--teal:hover{ background: var(--indigo-500); }.btn .ar{ display: inline-block; }.btn svg{ width: 16px; height: 16px; }/* ============================================================
   Hero
   ============================================================ */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: clamp(28px, 4vw, 56px);
}.hero__media{
  position: absolute;
  inset: 0;
  z-index: -2;
}.hero__media video,.hero__media img{
  width: 100%; height: 100%;
  object-fit: cover;
}.hero__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #090909 2%, rgba(9,9,9,0.15) 45%, rgba(9,9,9,0.55) 100%),
    linear-gradient(to left, rgba(22,48,61,0.35), rgba(9,9,9,0.1));
}.hero__inner{ padding-inline: var(--page-x); }/* The hero sits directly on the video,so its type always uses the
   fixed on-dark tokens rather than the theme-reactive ink scale. */
.hero__title{
  font-size: var(--t-2xl);
  line-height: 1.16;
  color: var(--on-dark);
  letter-spacing: -0.01em;
  max-width: 20ch;
  text-shadow: 0 4px 34px rgba(0,0,0,0.4);
}.sr-only{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}.hero__lead{
  margin-top: 28px;
  max-width: 46ch;
  font-size: var(--t-m);
  color: var(--on-dark-muted);
  font-weight: 500;
}.hero__sub{
  margin-top: 18px;
  max-width: 46ch;
  color: var(--on-dark-faint);
  font-size: var(--t-s);
  letter-spacing: 0.01em;
  word-spacing: 0.02em;
}.hero__actions{
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}.hero__features{
  margin-top: clamp(40px, 5vw, 70px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 250, 248, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 64px);
}.hero__feature{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--on-dark-muted);
  font-size: var(--t-s);
  font-weight: 500;
}.hero__feature .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-200);
  flex: none;
}/* ============================================================
   Problem section
   ============================================================ */
.problem{ background: var(--bg); }.compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
  margin-top: 8px;
}.compare__col{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 26px);
  background: var(--bg-soft);
}.compare__col--good{
  background: linear-gradient(155deg, var(--indigo-800), var(--indigo-900));
  border-color: rgba(108,155,173,0.28);
}.compare__tag{
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}.compare__col--good .compare__tag{ color: var(--teal-200); }.compare__list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }.compare__list li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--dust-300);
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(var(--tint-rgb), 0.02);
}.compare__col--good .compare__list li{ background: rgba(108,155,173,0.08); color: var(--on-dark-muted); }.compare__list .ic{
  flex: none;
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(var(--tint-rgb), 0.05);
}.compare__col--bad .ic{ color: var(--ink-muted); }.compare__col--good .ic{ color: var(--teal-200); background: rgba(108,155,173,0.16); }.compare__list .ic svg{ width: 17px; height: 17px; }/* ============================================================
   What we document
   ============================================================ */
.document{ background: var(--bg-soft); }.docs{
  display: grid;
  gap: clamp(40px, 6vw, 96px);
}.docrow{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}.docrow:nth-child(even){ direction: ltr; }.docrow:nth-child(even) > *{ direction: rtl; }.docrow__media{
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-800);
}.docrow__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}.docrow:hover .docrow__media img{ transform: scale(1.05); }.docrow__media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.35), transparent 55%);
}.docrow__n{
  font-size: 1rem;
  color: var(--teal-300);
  font-weight: 500;
  letter-spacing: 0.08em;
}.docrow__body h3{
  font-size: var(--t-xl);
  color: var(--dust-050);
  margin: 12px 0 16px;
}.docrow__body p{ font-size: var(--t-s); color: var(--ink-muted); max-width: 40ch; }/* ============================================================
   Gallery (auto-scroll + drag + click-to-zoom lightbox)
   ============================================================ */
.gallery{ background: var(--bg-soft); }/* Composed layout,grouped by type — uniform item width */
.finalout{ display: grid; gap: clamp(32px, 4.5vw, 56px); }.fo-group{ display: grid; gap: 16px; }.fo-tag{
  justify-self: center;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--teal-200);
  background: rgba(108, 155, 173, 0.12);
  border: 1px solid rgba(108, 155, 173, 0.28);
  padding: 6px 18px;
  border-radius: 999px;
}.fo-main{ display: flex; justify-content: center; }.fo-main .gitem--main{ width: min(860px, 100%); aspect-ratio: 16 / 9; }/* fo-block centers the row (and its "show more" divider) at the same
   width as the main video frame above it,so their edges align */
.fo-block{ margin-inline: auto; width: 100%; display: grid; gap: clamp(14px, 1.8vw, 22px); }.fo-block--tall{ max-width: min(860px, 100%); }.fo-block--std{ max-width: 820px; }.fo-row{ display: grid; gap: clamp(12px, 1.4vw, 16px); width: 100%; }.fo-row--tall{ grid-template-columns: repeat(4, minmax(0, 1fr)); }.fo-row--std{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {.fo-block--std{ max-width: 620px; }.fo-row--tall{ grid-template-columns: repeat(3, minmax(0, 1fr)); }}
@media (max-width: 620px) {.fo-block--std{ max-width: 440px; }.fo-row--tall{ grid-template-columns: repeat(2, minmax(0, 1fr)); }.fo-row--std{ grid-template-columns: repeat(2, minmax(0, 1fr)); }}.gitem--tall{ aspect-ratio: 9 / 16; }.gitem--wide{ aspect-ratio: 16 / 9; }.gitem--img{ aspect-ratio: 4 / 3; }.gitem--std{ aspect-ratio: 3 / 2; }/* موحّد للّقطات الثابتة والصور */

/* Show more / less — divider line with a centered chip */
.gitem--more{ display: none; }.fo-group.is-expanded .gitem--more{ display: block; animation: fo-fade 0.45s var(--ease) both; }
@keyframes fo-fade {from{ opacity: 0; transform: translateY(10px); }to{ opacity: 1; transform: none; }}.fo-more-wrap{ position: relative; display: flex; align-items: center; justify-content: center; }.fo-more-line{
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}.fo-more{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  color: var(--dust-100);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6em 1.5em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.3s var(--ease);
}.fo-more:hover{ background: rgba(var(--tint-rgb), 0.06); border-color: var(--dust-200); transform: translateY(-2px); }.fo-more-ic{ width: 15px; height: 15px; transition: transform 0.35s var(--ease); }.fo-more.is-open .fo-more-ic{ transform: rotate(180deg); }.gitem{
  position: relative;
  border: none; padding: 0; margin: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--charcoal-800);
  cursor: pointer;
}.gitem img,.gitem video{
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}.gitem__zoom{
  position: absolute;
  top: 10px; inset-inline-end: 10px;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(9, 9, 9, 0.45);
  backdrop-filter: blur(6px);
  color: var(--on-dark);
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}.gitem__zoom svg{ width: 16px; height: 16px; }.gitem:hover .gitem__zoom{ opacity: 1; transform: scale(1); }.gitem__play{
  position: absolute; inset: 0; margin: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(9, 9, 9, 0.42);
  backdrop-filter: blur(4px);
  color: var(--on-dark);
  transition: background 0.25s, transform 0.25s;
  pointer-events: none;
}.gitem__play svg{ width: 22px; height: 22px; margin-inline-start: 3px; }.gitem:hover .gitem__play{ background: rgba(22, 48, 61, 0.72); transform: scale(1.08); }

@media (max-width: 620px) {.gitem__play{ width: 44px; height: 44px; }}/* Example button under a package */
.plan__example{
  min-height: 40px;
  margin-top: 6px;
  width: 100%;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  color: var(--teal-200);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px;
  transition: color 0.25s;
}.plan__example:hover{ color: var(--dust-050); }.plan__example--placeholder{ visibility: hidden; pointer-events: none; }/* Project popup (package example) */
.projpop{
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  background: rgba(5, 5, 5, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}.projpop.is-open{ display: flex; animation: lb-in 0.3s var(--ease); }.projpop__panel{
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  width: min(1000px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}.projpop__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2.4vw, 24px) clamp(18px, 2.6vw, 32px);
  border-bottom: 1px solid var(--line);
  flex: none;
}.projpop__title{ font-size: var(--t-l); color: var(--dust-050); }.projpop__close{
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(var(--tint-rgb), 0.06);
  color: var(--dust-050);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.25s;
}.projpop__close:hover{ background: rgba(var(--tint-rgb), 0.16); }.projpop__body{
  overflow-y: auto;
  padding: clamp(18px, 2.6vw, 32px);
  display: grid;
  gap: clamp(26px, 3.4vw, 44px);
}.pp-group{ display: grid; gap: 14px; }.pp-tag{
  justify-self: start;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal-200);
  background: rgba(108, 155, 173, 0.12);
  border: 1px solid rgba(108, 155, 173, 0.28);
  padding: 5px 15px;
  border-radius: 999px;
}.pp-grid{
  --pp-w: clamp(140px, 20vw, 190px);
  display: grid;
  grid-template-columns: repeat(auto-fill, var(--pp-w));
  justify-content: center;
  gap: 12px;
}.pp-grid--main{ grid-template-columns: 1fr; }.pp-item{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--charcoal-800);
}.pp-item--main{ aspect-ratio: 16 / 9; }.pp-item--tall{ aspect-ratio: 9 / 16; }.pp-item--wide{ aspect-ratio: 16 / 9; }.pp-item--img{ aspect-ratio: 4 / 3; }.pp-item--std{ aspect-ratio: 3 / 2; }.pp-item video,.pp-item img{ width: 100%; height: 100%; object-fit: cover; display: block; }.pp-num{
  position: absolute;
  top: 10px; inset-inline-start: 10px;
  z-index: 2;
  font-size: 0.8rem; font-weight: 700;
  color: var(--on-dark);
  background: rgba(9, 9, 9, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 8px;
}
@media (max-width: 620px) {.pp-grid{ --pp-w: clamp(130px, 42vw, 165px); }}/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 48px);
  background: rgba(5, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}.lightbox.is-open{ display: flex; animation: lb-in 0.3s var(--ease); }
@keyframes lb-in {from{ opacity: 0; }to{ opacity: 1; }}.lightbox__stage{
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}.lightbox__stage img,.lightbox__stage video{
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}.lightbox__close{
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  inset-inline-end: clamp(14px, 3vw, 28px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 248, 0.18);
  background: rgba(255, 250, 248, 0.08);
  color: var(--on-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}.lightbox__close:hover{ background: rgba(255, 250, 248, 0.18); }.lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 248, 0.18);
  background: rgba(255, 250, 248, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--on-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background 0.25s, transform 0.25s;
}.lightbox__nav:hover{ background: rgba(var(--tint-rgb), 0.2); }.lightbox__nav:active{ transform: translateY(-50%) scale(0.92); }.lightbox__nav svg{ width: 24px; height: 24px; }.lightbox__nav--right{ right: clamp(10px, 3vw, 32px); }.lightbox__nav--left{ left: clamp(10px, 3vw, 32px); }
@media (max-width: 620px) {.lightbox__nav{ width: 44px; height: 44px; }.lightbox__nav svg{ width: 20px; height: 20px; }}/* ============================================================
   Packages
   ============================================================ */
.packages{ background: var(--bg); }.plans{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}.plan{
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.5s var(--ease);
}.plan:hover{ transform: translateY(-6px); }/* التجربة المتكاملة تبرز قليلاً عن الباقتين الأخريين — عمود أعرض
   وتكبير طفيف بصريًا مع ظل أوضح، على المقاسات الكبيرة فقط */
@media (min-width: 861px){
  .plans:has(.plan--featured) { grid-template-columns: 1fr 1.06fr 1fr; align-items: center; }
  .plan--featured { z-index: 2; box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4); }
  .plan--featured,
  .js .plan--featured.reveal.in { transform: scale(1.06); }
  .plan--featured:hover,
  .js .plan--featured.reveal.in:hover { transform: scale(1.06) translateY(-6px); }
}/* Ticket-stub shape: colored header strip + dashed perforation with
   punched notches + uniform dark body — same structure across tiers,only the stub's accent color changes per tier */
.plan__stub{
  position: relative;
  flex: none;
  min-height: 52px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}.plan--teal .plan__stub{ background: linear-gradient(120deg, var(--teal-700), var(--teal-500)); }.plan--featured .plan__stub{ background: linear-gradient(120deg, var(--indigo-700), var(--indigo-400)); }.plan--custom .plan__stub{ background: linear-gradient(120deg, #5c5a48, #7a7860); }/* Punched notches: circles matching the page background,straddling
   the stub's bottom edge to fake a torn-ticket cutout */
.plan__stub::before,.plan__stub::after{
  content: "";
  position: absolute;
  bottom: -11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  z-index: 2;
}.plan__stub::before{ inset-inline-start: -11px; }.plan__stub::after{ inset-inline-end: -11px; }.plan__stub-badge{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--on-dark);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
}.plan__stub-badge svg{ flex: none; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }.plan--featured .plan__stub-badge svg{ fill: var(--on-dark); stroke: none; }.plan__body{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px clamp(22px, 2.4vw, 34px) clamp(26px, 3vw, 36px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-top: 2px dashed var(--line-strong);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}/* Name + price share one row,price trailing (start = name,end = price) */
.plan__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}.plan__name{ flex: 1; min-width: 0; font-size: clamp(1.1rem, 1.3vw, 1.35rem); color: var(--dust-050); margin-bottom: 0; }.plan__desc{ color: var(--ink-muted); font-size: var(--t-s); margin: 18px 0 14px; }.plan__price{ flex: none; display: flex; align-items: baseline; gap: 6px; }.plan__price .num{
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 700;
  color: var(--dust-050);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}.plan__price .price-tbd{ color: var(--ink-faint); font-weight: 500; }.plan__price .cur{ color: var(--ink-muted); font-size: 0.8rem; }.plan__price .scope{ color: var(--dust-100); font-size: 0.9rem; font-weight: 500; white-space: nowrap; }.plan--custom .plan__total{ border-color: rgba(158, 156, 138, 0.3); background: rgba(158, 156, 138, 0.1); }.plan__features{ list-style: none; margin: 0 0 10px; padding: 0; display: grid; gap: 8px; }.plan__features li{
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--t-s); line-height: 1.38; color: var(--dust-300);
}.plan__features .ic{ flex: none; margin-top: 3px; color: var(--teal-300); }.plan--featured .plan__features .ic{ color: var(--teal-200); }.plan__features .ic svg{ width: 15px; height: 15px; }.plan__total{
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(var(--tint-rgb), 0.04);
  border: 1px solid var(--line);
}.plan--featured .plan__total{ background: rgba(108, 155, 173, 0.12); border-color: rgba(108, 155, 173, 0.28); }.plan__total-num{ font-size: 1.4rem; font-weight: 700; color: var(--dust-050); line-height: 1; }.plan--featured .plan__total-num{ color: var(--teal-200); }.plan__total-label{ font-size: 0.86rem; color: var(--ink-muted); }.plan--featured .plan__total-label{ color: var(--dust-300); }.plan__actions{ margin-top: auto; padding-top: 18px; }.plan .btn{ width: 100%; justify-content: center; }/* ============================================================
   Package cart — dark,editorial configuration flow
   (matches the site's charcoal / indigo / teal theme)
   ============================================================ */
body.cart-is-open{ overflow: hidden; }.cart-modal{
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 42px);
  background: rgba(4, 6, 7, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}.cart-modal.is-open{ display: flex; animation: cart-fade-in 0.28s var(--ease); }
@keyframes cart-fade-in {from{ opacity: 0; }to{ opacity: 1; }}
@keyframes cart-panel-in {from{ opacity: 0; transform: translateY(22px) scale(0.985); }to{ opacity: 1; transform: none; }}.cart-modal__panel{
  width: min(900px, 100%);
  max-height: min(860px, calc(100dvh - 36px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
  animation: cart-panel-in 0.42s var(--ease);
}.cart-modal__header{
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(22px, 3vw, 38px) 18px;
  background: color-mix(in srgb, var(--bg-soft), #000 8%);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}.cart-modal__eyebrow,.cart-package__eyebrow,.cart-section-head span{
  display: block;
  color: var(--teal-200);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}.cart-modal__header h2{ margin-top: 2px; color: var(--dust-050); font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.25; }.cart-modal__close{
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--dust-050);
  background: rgba(var(--tint-rgb), 0.06);
  font-family: system-ui, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}.cart-modal__close:hover{ background: rgba(var(--tint-rgb), 0.16); transform: scale(1.04); }.cart-modal__close:focus-visible,.cart-addon:focus-visible,.cart-actions__clear:focus-visible,.cart-floating:focus-visible{ outline: 3px solid var(--teal-300); outline-offset: 3px; }.cart-modal__body{
  min-height: 0;
  overflow-y: auto;
  padding: clamp(20px, 3vw, 34px) clamp(20px, 3.5vw, 42px);
}.cart-package{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--on-dark);
  background: linear-gradient(145deg, var(--indigo-700), var(--indigo-900));
  border: 1px solid rgba(108, 155, 173, 0.28);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}.cart-package__identity{ max-width: 620px; }.cart-package__eyebrow{ color: var(--teal-200); }.cart-package__name{ margin-top: 5px; color: var(--on-dark); font-size: clamp(1.35rem, 2.5vw, 1.9rem); line-height: 1.35; }.cart-package__description{ margin-top: 7px; color: var(--on-dark-muted); font-size: 0.98rem; line-height: 1.65; }.cart-package__price{ flex: none; color: var(--on-dark); font-size: clamp(1.05rem, 2vw, 1.35rem); white-space: nowrap; }.cart-addons{ margin-top: clamp(30px, 4vw, 46px); }.cart-section-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}.cart-section-head h3{ margin-top: 3px; color: var(--dust-050); font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.35; }.cart-section-head > small{ color: var(--ink-muted); font-size: 0.84rem; }.cart-addons__list{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }.cart-addon{
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  text-align: start;
  color: var(--ink);
  background: var(--charcoal-800);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.22s, background 0.22s, transform 0.22s, box-shadow 0.22s;
}.cart-addon:hover{ transform: translateY(-1px); border-color: rgba(108, 155, 173, 0.4); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28); }.cart-addon.is-selected{
  border-color: var(--teal-300);
  background: rgba(108, 155, 173, 0.1);
  box-shadow: 0 0 0 1px var(--teal-300), 0 12px 28px rgba(0, 0, 0, 0.24);
}.cart-addon__copy{ display: grid; gap: 3px; }.cart-addon__name{ color: var(--dust-050); font-size: 1.05rem; line-height: 1.4; }.cart-addon__description{ color: var(--ink-muted); font-size: 0.88rem; line-height: 1.55; }.cart-addon__action{ flex: none; display: flex; align-items: center; gap: 14px; }.cart-addon__price{ color: var(--dust-300); font-size: 0.9rem; white-space: nowrap; }.cart-addon__mark{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink-muted);
  background: var(--charcoal-700);
  font-family: system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}.cart-addon.is-selected .cart-addon__mark{ color: var(--on-dark); background: var(--teal-300); border-color: var(--teal-300); transform: scale(1.04); }.cart-customer{ margin-top: clamp(32px, 4vw, 48px); padding-top: clamp(28px, 3.5vw, 40px); border-top: 1px solid var(--line); }.cart-customer__grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }.cart-customer__grid label{ display: grid; gap: 6px; color: var(--ink-muted); font-size: 0.84rem; }.cart-customer__grid label.wide{ grid-column: 1 / -1; }.cart-customer__grid label span b{ color: #e08a83; font-weight: 700; }.cart-customer__grid input,.cart-customer__grid textarea,.cart-customer__grid select{
  width: 100%;
  color: var(--dust-100);
  background: var(--charcoal-800);
  border: 1.5px solid var(--line-strong);
  border-radius: 13px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}.cart-customer__grid input,.cart-customer__grid select{ height: 48px; padding: 0 13px; }.cart-customer__grid textarea{ min-height: 90px; padding: 10px 13px; line-height: 1.65; resize: vertical; }.cart-customer__grid input:focus,.cart-customer__grid textarea:focus,.cart-customer__grid select:focus{ border-color: var(--teal-300); box-shadow: 0 0 0 3px rgba(108, 155, 173, 0.22); }.cart-customer__grid .is-invalid{ border-color: #d9736c; box-shadow: 0 0 0 3px rgba(217, 115, 108, 0.16); }.cart-service-area{
  margin-top: 13px;
  padding: 11px 13px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--dust-300);
  background: rgba(108, 155, 173, 0.1);
  border: 1px solid rgba(108, 155, 173, 0.26);
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.6;
}.cart-service-area span{ flex: none; color: var(--teal-200); font: 700 1rem/1.45 system-ui, sans-serif; }.cart-service-area strong{ color: var(--dust-050); white-space: nowrap; }.cart-form-status{ min-height: 1.5em; margin-top: 9px; color: var(--ink-muted); font-size: 0.82rem; line-height: 1.5; }.cart-form-status.is-error{ color: #e08a83; }.cart-form-status.is-success{ color: var(--teal-200); }.cart-modal__footer{
  flex: none;
  display: grid;
  grid-template-columns: 1fr minmax(210px, 260px);
  align-items: center;
  gap: 28px;
  padding: 19px clamp(22px, 3.5vw, 42px) calc(19px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg-soft), #000 10%);
  border-top: 1px solid var(--line);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}.cart-summary{ display: grid; gap: 3px; }.cart-summary > div{ display: flex; align-items: baseline; justify-content: space-between; gap: 20px; color: var(--ink-muted); font-size: 0.8rem; }.cart-summary > div strong{ color: var(--dust-100); font-size: 0.88rem; }.cart-summary .cart-summary__total{ margin-top: 1px; color: var(--dust-100); font-size: 0.9rem; }.cart-summary .cart-summary__total strong{ color: var(--dust-050); font-size: 1.08rem; }.cart-summary p{ margin-top: 2px; color: var(--ink-faint); font-size: 0.7rem; line-height: 1.4; }.cart-actions{ display: grid; gap: 7px; }.cart-actions .btn{ width: 100%; justify-content: center; min-height: 50px; }.cart-actions__clear{ justify-self: center; padding: 2px 10px; color: var(--ink-muted); background: none; border: 0; font-family: inherit; font-size: 0.82rem; cursor: pointer; }.cart-actions__clear:hover{ color: var(--dust-100); text-decoration: underline; }.cart-floating{
  position: fixed;
  z-index: 170;
  inset-inline-end: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  min-width: 186px;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px 9px 14px;
  color: var(--on-dark);
  background: rgba(22, 48, 61, 0.94);
  border: 1px solid rgba(108, 155, 173, 0.45);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-family: inherit;
  text-align: start;
  cursor: pointer;
  animation: cart-panel-in 0.4s var(--ease);
}.cart-floating[hidden]{ display: none; }.cart-floating__icon{ width: 38px; height: 38px; border-radius: 50%; background: var(--teal-200); position: relative; }.cart-floating__icon::before{
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  inset: 13px auto auto 12px;
  border: 2px solid var(--indigo-900);
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
}.cart-floating__icon::after{
  content: "";
  position: absolute;
  width: 8px;
  height: 5px;
  inset: 9px auto auto 15px;
  border: 2px solid var(--indigo-900);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}.cart-floating__copy{ flex: 1; display: grid; gap: 1px; line-height: 1.2; }.cart-floating__copy small{ color: var(--on-dark-muted); font-size: 0.72rem; }.cart-floating__copy strong{ color: var(--on-dark); font-size: 0.86rem; white-space: nowrap; }.cart-floating__count{ min-width: 27px; height: 27px; padding-inline: 6px; display: grid; place-items: center; color: var(--charcoal-900); background: var(--dust-050); border-radius: 999px; font: 700 0.78rem/1 system-ui, sans-serif; }/* Cart step flow */
.cart-progress{
  flex: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px clamp(22px, 3vw, 38px);
  background: color-mix(in srgb, var(--bg-soft), #000 5%);
  border-bottom: 1px solid var(--line);
}.cart-progress span{ display: flex; align-items: center; gap: 7px; color: var(--ink-faint); font-size: 0.73rem; font-weight: 700; white-space: nowrap; }.cart-progress b{ width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--charcoal-700); color: var(--ink-muted); font: 700 0.68rem system-ui; transition: background 0.25s, color 0.25s; }.cart-progress span.is-active{ color: var(--teal-200); }.cart-progress span.is-active b,.cart-progress span.is-complete b{ background: var(--teal-300); color: var(--indigo-900); }.cart-progress span.is-complete{ color: var(--dust-300); }.cart-step{ display: none; }.cart-step.is-active{ display: block; }.cart-included{
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--charcoal-800);
}.cart-included > span{ color: var(--teal-200); font-size: 0.76rem; font-weight: 700; }.cart-included h3{ margin: 3px 0 15px; color: var(--dust-050); font-size: 1.25rem; }.cart-included ul{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; margin: 0; padding: 0; list-style: none; }.cart-included li{ display: flex; gap: 8px; color: var(--dust-300); font-size: 0.87rem; line-height: 1.5; }.cart-included li span{ color: var(--teal-200); font-weight: 800; }.cart-empty-addons{ padding: 24px; border: 1px dashed var(--line-strong); border-radius: 16px; color: var(--ink-muted); text-align: center; }.cart-step.cart-addons,.cart-step.cart-customer{ margin-top: 0; padding-top: 0; border-top: 0; }.cart-review{ padding-top: 3px; }.cart-review #cartReviewContent{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }.review-card{ padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--charcoal-800); }.review-card > span{ display: block; margin-bottom: 7px; color: var(--teal-200); font-size: 0.72rem; font-weight: 700; }.review-card > strong{ color: var(--dust-050); font-size: 1.05rem; }.review-card ul{ margin: 10px 0 0; padding-right: 18px; color: var(--dust-300); font-size: 0.82rem; line-height: 1.75; }.review-card p{ margin: 7px 0 0; color: var(--ink-muted); font-size: 0.82rem; }.cart-actions__clear{ display: inline-flex; align-items: center; gap: 6px; color: #d99a94; }.cart-actions__clear svg{ width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }.cart-actions__clear:hover{ color: #e6b0ab; }.cart-actions__nav{ display: flex; gap: 8px; }.cart-actions__nav .btn{ flex: 1; }.cart-back{
  min-width: 78px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(var(--tint-rgb), 0.05);
  color: var(--dust-100);
  font: inherit;
  font-weight: 700;
  transition: background 0.25s, border-color 0.25s;
}.cart-back:hover{ background: rgba(var(--tint-rgb), 0.1); border-color: var(--dust-200); }

@media (max-width: 680px) {.cart-modal{ align-items: flex-end; padding: 10px 0 0; }.cart-modal__panel{ width: 100%; max-height: calc(100dvh - 10px); border-radius: 26px 26px 0 0; border-bottom: 0; }.cart-modal__header{ padding: 17px 20px 14px; }.cart-modal__header h2{ font-size: 1.45rem; }.cart-modal__close{ width: 38px; height: 38px; }.cart-modal__body{ padding: 18px 16px 24px; }.cart-package{ align-items: flex-start; padding: 20px; border-radius: 20px; gap: 14px; }.cart-package__name{ font-size: 1.25rem; }.cart-package__description{ font-size: 0.88rem; }.cart-package__price{ font-size: 0.92rem; }.cart-addons{ margin-top: 28px; }.cart-addons__list{ grid-template-columns: 1fr; }.cart-section-head{ align-items: flex-start; margin-inline: 3px; }.cart-section-head > small{ display: none; }.cart-section-head h3{ font-size: 1.25rem; }.cart-addon{ min-height: 88px; padding: 15px; gap: 12px; border-radius: 16px; }.cart-addon__name{ font-size: 0.98rem; }.cart-addon__description{ font-size: 0.8rem; }.cart-addon__action{ gap: 9px; flex-direction: column-reverse; align-items: flex-end; }.cart-addon__price{ font-size: 0.76rem; }.cart-addon__mark{ width: 31px; height: 31px; }.cart-customer{ margin-top: 30px; padding-top: 27px; }.cart-customer__grid{ grid-template-columns: 1fr; gap: 11px; }.cart-customer__grid label.wide{ grid-column: auto; }.cart-customer__grid input{ height: 46px; }.cart-service-area{ font-size: 0.75rem; }.cart-modal__footer{ grid-template-columns: 1fr; gap: 14px; padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); }.cart-summary > div{ font-size: 0.76rem; }.cart-summary p{ font-size: 0.68rem; }.cart-floating{ min-width: 162px; min-height: 56px; inset-inline-end: 14px; bottom: max(14px, env(safe-area-inset-bottom)); padding: 8px 9px 8px 12px; }.cart-floating__icon{ width: 34px; height: 34px; }.cart-floating__icon::before{ inset: 11px auto auto 10px; }.cart-floating__icon::after{ inset: 7px auto auto 13px; }.cart-progress{ padding: 10px 16px; }.cart-progress span{ justify-content: center; font-size: 0; }.cart-progress b{ font-size: 0.68rem; }.cart-included{ padding: 17px; }.cart-included ul{ grid-template-columns: 1fr; }.cart-review #cartReviewContent{ grid-template-columns: 1fr; }.cart-actions{ grid-template-columns: auto 1fr; align-items: center; }.cart-actions__clear{ grid-column: 1; }.cart-actions__nav{ grid-column: 2; }}

@media (prefers-reduced-motion: reduce) {.cart-modal.is-open,.cart-modal__panel,.cart-floating{ animation: none; }}/* ============================================================
   Process
   ============================================================ */
.process{ background: var(--bg-soft); position: relative; }.steps{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  border-top: 1px solid var(--line);
}.step{
  padding: clamp(24px, 2.5vw, 38px) clamp(16px, 1.6vw, 24px) clamp(24px, 2.5vw, 44px);
  border-inline-start: 1px solid var(--line);
  position: relative;
}.step:first-child{ border-inline-start: none; }.step__n{
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--teal-500);
  line-height: 1;
  letter-spacing: -0.02em;
}.step__dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal-300);
  margin: 22px 0;
  box-shadow: 0 0 0 5px rgba(102,146,164,0.14);
}.step h3{ font-size: var(--t-s); color: var(--dust-050); margin-bottom: 12px; }.step p{ font-size: 0.98rem; color: var(--ink-muted); line-height: 1.7; }/* ============================================================
   FAQ
   ============================================================ */
.faq{ background: var(--bg); }.faq-all-link{display:inline-flex;align-items:center;gap:8px;margin-top:22px;padding:10px 15px;border:1px solid var(--line-strong);border-radius:999px;color:var(--dust-100);font-size:.82rem;font-weight:700;transition:.2s}.faq-all-link:hover{border-color:var(--teal-300);color:var(--teal-200);transform:translateY(-1px)}.faq-grid{ display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px, 5vw, 80px); align-items: start; }.accordion{ border-top: 1px solid var(--line); }.acc{
  border-bottom: 1px solid var(--line);
}.acc__q{
  width: 100%;
  background: none;
  border: none;
  color: var(--dust-100);
  font-family: inherit;
  font-size: var(--t-m);
  font-weight: 500;
  text-align: start;
  padding: clamp(22px, 2.4vw, 30px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}.acc__ic{
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}.acc__ic::before,.acc__ic::after{
  content: ""; position: absolute;
  background: var(--dust-100);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}.acc__ic::before{ width: 13px; height: 1.6px; }.acc__ic::after{ width: 1.6px; height: 13px; }.acc.is-open .acc__ic{ background: var(--indigo-400); border-color: var(--indigo-400); }.acc.is-open .acc__ic::before{ background: var(--on-dark); }.acc.is-open .acc__ic::after{ transform: scaleY(0); opacity: 0; }.acc__a{
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}.acc__a p{
  padding-bottom: clamp(22px, 2.4vw, 30px);
  color: var(--ink-muted);
  font-size: var(--t-s);
  max-width: 60ch;
}/* ============================================================
   Final CTA
   ============================================================ */
.cta{
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 190px);
  text-align: center;
}.cta__media{ position: absolute; inset: 0; z-index: -2; }.cta__media img,.cta__media video{ width: 100%; height: 100%; object-fit: cover; }.cta__media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0.82), rgba(22,48,61,0.72));
}.cta__inner{ max-width: 680px; margin-inline: auto; }.cta h2{ font-size: var(--t-2xl); color: var(--on-dark); }.cta h2.cta-single-line{
  font-size: clamp(1.7rem, 6vw, 4rem);
  white-space: nowrap;
}.cta p{ margin-top: 22px; color: var(--on-dark-muted); font-size: var(--t-m); }.cta__actions{ margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }/* Hero and CTA sit on fixed dark video backdrops in both themes,so
   their buttons keep a permanent light-pill / light-ghost treatment
   instead of the theme-reactive .btn--primary / .btn--ghost pair. */
.hero__actions .btn--primary,.cta__actions .btn--primary{
  background: var(--on-dark);
  color: #090909;
}.hero__actions .btn--primary:hover,.cta__actions .btn--primary:hover{
  background: var(--on-dark-muted);
}.hero__actions .btn--ghost,.cta__actions .btn--ghost{
  border-color: rgba(255, 250, 248, 0.28);
  color: var(--on-dark);
}.hero__actions .btn--ghost:hover,.cta__actions .btn--ghost:hover{
  border-color: var(--on-dark);
  background: rgba(255, 250, 248, 0.06);
}/* ============================================================
   Footer
   ============================================================ */
.footer{
  background: var(--charcoal-900);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 84px);
}.footer__top{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}.footer__brand svg{ height: clamp(40px, 6vw, 74px); fill: var(--dust-100); }.footer__brand p{
  margin-top: 20px;
  color: var(--ink-muted);
  font-size: var(--t-s);
  max-width: 34ch;
}.footer__contact{ text-align: start; }.footer__contact .lbl{ font-size: var(--t-cap); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }.footer__contact a{ display: block; font-size: var(--t-m); color: var(--dust-100); margin-top: 8px; font-weight: 500; }.footer__bottom{
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-faint);
  font-size: 0.9rem;
}/* ============================================================
   Reveal animation
   ============================================================ */
.js .reveal{
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}.js .reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {.reveal{ opacity: 1; transform: none; transition: none; }html{ scroll-behavior: auto; }}/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px){
  .faq-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(odd) { border-inline-start: none; }
}
@media (max-width: 900px) {.docrow{ grid-template-columns: 1fr; gap: 16px; }.docrow:nth-child(even){ direction: rtl; }.docrow__media{ aspect-ratio: 16 / 10; }.docrow__body h3{ margin: 10px 0 10px; }}
@media (max-width: 860px) {.footer__top{ flex-direction: column; align-items: flex-start; }/* Packages: full-width stacked cards,tightened for a neater mobile flow */
  .plans{
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }.plans .plan:last-child:nth-child(odd){ grid-column: auto; }.plan{
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
  }.plan:hover{ transform: none; }.plan__stub{ padding: 12px 19px; border-radius: 20px 20px 0 0; }.plan__stub-badge{ font-size: 0.8rem; }.plan__stub-badge svg{ width: 15px; height: 15px; }.plan__body{ padding: 19px 19px; border-radius: 0 0 20px 20px; }.plan__head{ padding-bottom: 13px; gap: 10px; }.plan__name{ font-size: 1.04rem; margin-bottom: 0; }.plan__desc{ font-size: 0.9rem; margin-top: 14px; }.plan__price .num{ font-size: 1.22rem; }.plan__price .cur{ font-size: 0.72rem; }.plan__price .scope{ font-size: 0.82rem; }.plan__features{ gap: 8px; margin-bottom: 8px; }.plan__features li{ font-size: 0.9rem; gap: 9px; line-height: 1.38; }.plan__features .ic svg{ width: 14px; height: 14px; }.plan__total{ padding: 11px 13px; gap: 8px; margin-bottom: 10px; }.plan__total-num{ font-size: 1.18rem; }.plan__total-label{ font-size: 0.78rem; }.plan__actions{ padding-top: 13px; }.plan .btn{ min-height: 46px; padding: 0.9em 1.1em; font-size: 0.92rem; }}
@media (max-width: 620px) {.compare{ grid-template-columns: 1fr; }.hero__feature{ font-size: 0.95rem; }/* Compare: two points per row (same pill design) */
  .compare__list{ grid-template-columns: 1fr 1fr; gap: 8px; }.compare__list li{ font-size: 0.8rem; padding: 10px; gap: 9px; line-height: 1.35; }.compare__list .ic{ width: 28px; height: 28px; border-radius: 8px; }.compare__list .ic svg{ width: 15px; height: 15px; }/* Process: compact — number on the right,text to its left */
  .steps{ grid-template-columns: 1fr; }.step{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 16px 2px;
    border-inline-start: none !important;
    border-top: 1px solid var(--line);
  }.step__n{ grid-column: 1; grid-row: 1 / span 2; align-self: center; font-size: 1.9rem; }.step__dot{ display: none; }.step h3{ grid-column: 2; grid-row: 1; margin-bottom: 4px; }.step p{ grid-column: 2; grid-row: 2; font-size: 0.92rem; line-height: 1.6; }}

/* ===== الباقات: المميزات ظاهرة دائمًا + سعر العرض ===== */
.plan__details-inner { min-height: 0; }
.plan__details .plan__example { margin-top: 6px; }
.plan__features { margin-top: 4px; }

/* شارة العرض أعلى بطاقة الباقة */
.plan__offer-flag {
  margin-inline-start: auto;
  padding: 3px 11px;
  border-radius: 999px;
  background: #b8422f;
  color: var(--on-dark);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(184, 66, 47, 0.4);
}
.plan__stub { gap: 10px; }

/* السعر الأصلي مشطوبًا بجانب سعر العرض */
.plan__price { flex-wrap: wrap; row-gap: 2px; }
.plan__price-was {
  color: var(--ink-faint);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
}
.plan__price-vat {
  flex-basis: 100%;
  color: var(--ink-faint);
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: start;
}
.plan--has-offer .plan__price .num { color: var(--dust-050); }

/* تفصيل الضريبة في تذييل السلة */
.cart-summary #cartOfferRow strong { color: #e0917f; }
.cart-package__price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.cart-package__price-was { color: var(--on-dark-faint); font-size: 0.86rem; font-weight: 500; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.cart-package__price-vat { color: var(--on-dark-faint); font-size: 0.66rem; font-weight: 400; }

/* ===== الباقة المخصّصة: تواصل مباشر بدل السلة ===== */
.plan__actions--contact { display: grid; gap: 9px; }
.plan__contact-note {
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}
.plan__contact { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.plan__contact svg { width: 18px; height: 18px; flex: none; }
