/* ============================================================
   فلاش للغسل — ستايل الصفحة
   الألوان مستخرجة من اللوكو: بنفسجي، أصفر برق، أزرق قطرات ماء
   ============================================================ */

:root {
  /* الألوان الأساسية */
  --bg: #160b23;
  --bg-2: #1d0f2e;
  --purple: #9b4fd1;
  --purple-mid: #6f2ba8;
  --purple-deep: #4a1478;
  --purple-ink: #2c0b4a;
  --yellow: #ffd400;
  --yellow-2: #ffb703;
  --yellow-ink: #c98a00;
  --blue: #3ec6f0;
  --blue-2: #1e9fd6;
  --wa: #25d366;
  --wa-2: #128c4a;

  --text: #f4f4f7;
  --muted: #c7b6da;
  --muted-2: #9c88b4;

  --line: rgba(255, 255, 255, .11);
  --glass: rgba(255, 255, 255, .055);
  --glass-2: rgba(255, 255, 255, .09);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --shadow-glow: 0 0 0 1px rgba(255, 212, 0, .5), 0 14px 40px rgba(255, 212, 0, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  /* clip بدل hidden حتى لا يتعطل position:sticky داخل الصفحة */
  overflow-x: clip;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

::selection { background: var(--yellow); color: #221000; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ============================================================
   خلفية متحركة
   ============================================================ */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 82% -8%, rgba(155, 79, 209, .40), transparent 62%),
    radial-gradient(900px 620px at 8% 12%, rgba(74, 20, 120, .55), transparent 60%),
    radial-gradient(760px 620px at 50% 108%, rgba(62, 198, 240, .13), transparent 62%),
    linear-gradient(180deg, #160b23 0%, #1a0d29 45%, #120818 100%);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
  animation: float-glow 18s var(--ease) infinite alternate;
}
.bg-glow--1 { width: 460px; height: 460px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(155,79,209,.85), transparent 68%); }
.bg-glow--2 { width: 420px; height: 420px; top: 44%; left: -140px; background: radial-gradient(circle, rgba(62,198,240,.55), transparent 68%); animation-delay: -6s; }
.bg-glow--3 { width: 380px; height: 380px; bottom: -110px; right: 26%; background: radial-gradient(circle, rgba(255,212,0,.30), transparent 68%); animation-delay: -11s; }

@keyframes float-glow {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-30px, 40px, 0) scale(1.12); }
  100% { transform: translate3d(35px, -30px, 0) scale(.95); }
}

/* قطرات الماء المتساقطة */
.drops { position: absolute; inset: 0; }
.drop {
  position: absolute;
  top: -6vh;
  width: 9px; height: 13px;
  background: linear-gradient(180deg, rgba(62,198,240,.95), rgba(30,159,214,.35));
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  transform: rotate(180deg);
  opacity: 0;
  animation: fall linear infinite;
  filter: drop-shadow(0 0 6px rgba(62,198,240,.55));
}
@keyframes fall {
  0%   { transform: translateY(0) rotate(180deg) scale(.7); opacity: 0; }
  10%  { opacity: .85; }
  85%  { opacity: .55; }
  100% { transform: translateY(112vh) rotate(180deg) scale(1); opacity: 0; }
}

/* ============================================================
   أزرار
   ============================================================ */
.btn {
  --btn-bg: var(--glass-2);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  background: var(--btn-bg);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease), background .25s var(--ease);
  overflow: hidden;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn .ico { width: 19px; height: 19px; fill: currentColor; flex: 0 0 auto; }

.btn--yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-2) 100%);
  color: #2b1500;
  border-color: rgba(255, 233, 130, .9);
  box-shadow: 0 10px 30px rgba(255, 183, 3, .3);
}
.btn--yellow:hover { box-shadow: 0 16px 40px rgba(255, 183, 3, .45); }

.btn--ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255,255,255,.35); }

.btn--wa {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-2) 100%);
  color: #04220f;
  border-color: rgba(120, 245, 175, .55);
  box-shadow: 0 12px 34px rgba(37, 211, 102, .3);
}
.btn--wa:hover { box-shadow: 0 18px 44px rgba(37, 211, 102, .45); }

.btn--lg { padding: 16px 32px; font-size: 16.5px; }
.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--block { width: 100%; }

.btn:disabled,
.btn.is-locked {
  filter: grayscale(.6) brightness(.74);
  box-shadow: none;
}
.btn:disabled { cursor: not-allowed; }
.btn:disabled:hover,
.btn.is-locked:hover { transform: none; }

/* لمعة تمر على الزر */
.btn--yellow::after,
.btn--wa::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-160%) skewX(-18deg);
  animation: shine 4.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 62% { transform: translateX(-160%) skewX(-18deg); }
  85%, 100% { transform: translateX(360%) skewX(-18deg); }
}

.shake { animation: shake .45s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-9px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(4px); }
}

/* ============================================================
   شعارات وشرائح
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 212, 0, .12);
  border: 1px solid rgba(255, 212, 0, .35);
  color: #ffe066;
}
.badge--pill { backdrop-filter: blur(6px); }

/* ============================================================
   شريط التنقل
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
  padding: 14px 0;
}
.nav.is-stuck {
  background: rgba(22, 11, 35, .82);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .42);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav__brand { display: inline-flex; align-items: center; gap: 11px; }
.nav__logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  filter: drop-shadow(0 4px 14px rgba(155, 79, 209, .75));
  transition: transform .4s var(--ease);
}
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.07); }
.nav__name { font-size: 21px; font-weight: 900; letter-spacing: .2px; }
.nav__name em { color: var(--yellow); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  transition: color .25s, background .25s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  inset-inline: 15px;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
}

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  width: 44px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--glass);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .25s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   الواجهة الرئيسية
   ============================================================ */
.hero { padding: 150px 0 70px; position: relative; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}

.hero__title { margin: 18px 0 16px; line-height: 1.16; }
.hero__title-top {
  display: block;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 8%, #d9c7ee 55%, #a97fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .55));
  letter-spacing: -.5px;
}
.hero__title-sub {
  display: block;
  font-size: clamp(19px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin-top: 4px;
}
.hero__title-sub em {
  color: var(--yellow);
  position: relative;
  text-shadow: 0 0 26px rgba(255, 212, 0, .55);
  animation: flicker 5s ease-in-out infinite;
}
@keyframes flicker {
  0%, 88%, 100% { opacity: 1; text-shadow: 0 0 26px rgba(255,212,0,.55); }
  90% { opacity: .55; text-shadow: 0 0 6px rgba(255,212,0,.25); }
  92% { opacity: 1; text-shadow: 0 0 40px rgba(255,212,0,.9); }
  94% { opacity: .7; }
}

.hero__desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__desc strong { color: var(--blue); font-weight: 800; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; }
.ico--wa { fill: currentColor; }

.hero__stats {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__stat {
  flex: 1 1 130px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 16px;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s;
}
.hero__stat:hover { transform: translateY(-4px); border-color: rgba(255,212,0,.4); }
.hero__stat b {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.2;
}
.hero__stat small { color: var(--muted-2); font-size: 12.5px; font-weight: 600; }

/* اللوكو مع الحلقات */
.hero__visual { display: flex; justify-content: center; }
.hero__logo-wrap {
  position: relative;
  /* 74vw كحد أقصى حتى لا تتجاوز الحلقة الخارجية (‎+12%‎) حدود الشاشة */
  width: min(420px, 74vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero__logo {
  width: 78%;
  border-radius: 50%;
  animation: bob 6s ease-in-out infinite;
  filter: drop-shadow(0 26px 60px rgba(120, 40, 190, .8));
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.6deg); }
}
.hero__ring {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 212, 0, .35);
  animation: spin 26s linear infinite;
}
.hero__ring--2 {
  inset: -6%;
  border: 1px solid rgba(62, 198, 240, .3);
  animation: spin 40s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.spark {
  position: absolute;
  font-size: 26px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
  animation: pop 3.4s ease-in-out infinite;
}
.spark--1 { top: 4%; right: 12%; }
.spark--2 { bottom: 10%; right: 4%; animation-delay: -1.1s; }
.spark--3 { bottom: 6%; left: 12%; animation-delay: -2.2s; }
@keyframes pop {
  0%, 100% { transform: scale(1) translateY(0); opacity: .9; }
  50% { transform: scale(1.28) translateY(-8px); opacity: 1; }
}

/* ============================================================
   شريط المميزات
   ============================================================ */
.features { padding: 24px 0 10px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.feature:hover { transform: translateY(-5px); background: var(--glass-2); border-color: rgba(155,79,209,.5); }
.feature__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 22px;
  flex: 0 0 auto;
}
.feature__ico--yellow { background: rgba(255,212,0,.15); border: 1px solid rgba(255,212,0,.3); }
.feature__ico--blue { background: rgba(62,198,240,.15); border: 1px solid rgba(62,198,240,.3); }
.feature__ico--purple { background: rgba(155,79,209,.2); border: 1px solid rgba(155,79,209,.4); }
.feature h3 { font-size: 15.5px; font-weight: 800; }
.feature p { font-size: 12.8px; color: var(--muted-2); line-height: 1.5; }

/* ============================================================
   الأقسام
   ============================================================ */
.section { padding: 72px 0; position: relative; }
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(155, 79, 209, .07) 35%, transparent);
  pointer-events: none;
}

.section__head { text-align: center; max-width: 700px; margin: 0 auto 42px; }
.section__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--blue);
  background: rgba(62, 198, 240, .1);
  border: 1px solid rgba(62, 198, 240, .3);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}
.section__title em {
  background: linear-gradient(120deg, var(--yellow), var(--yellow-2) 60%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__desc { color: var(--muted); font-size: 15.5px; }

/* ============================================================
   كروت الباقات
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  backdrop-filter: blur(14px);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease);
  cursor: pointer;
  overflow: hidden;
  text-align: right;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.card::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  opacity: .85;
}
.card:hover { transform: translateY(-8px); border-color: rgba(155, 79, 209, .6); box-shadow: var(--shadow); }
.card:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.card.is-selected {
  border-color: var(--yellow);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(165deg, rgba(255, 212, 0, .13), rgba(155, 79, 209, .1));
  transform: translateY(-6px);
}
.card.is-selected::before { background: linear-gradient(90deg, var(--yellow), var(--yellow-2)); height: 5px; }

.card--vip::before { background: linear-gradient(90deg, var(--yellow), #ff8fe0, var(--blue)); }
.card--vip { border-color: rgba(255, 212, 0, .34); }

.card__ribbon {
  position: absolute;
  top: 16px; left: -2px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-2));
  color: #2b1500;
  font-size: 11.5px;
  font-weight: 900;
  padding: 5px 14px 5px 12px;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 6px 18px rgba(255, 183, 3, .35);
}

.card__check {
  position: absolute;
  top: 16px; inset-inline-end: 16px;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  font-size: 14px;
  color: #2b1500;
  background: transparent;
  transition: background .25s, border-color .25s, transform .3s var(--ease);
}
.card.is-selected .card__check {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.12);
}
/* إذا الكارت عليه شريط، ننزّل علامة الاختيار تحته */
.card__ribbon + .card__check { top: 54px; }
.card.is-selected .card__check::after { content: '✓'; font-weight: 900; }

.card__ico { font-size: 34px; line-height: 1; margin-bottom: 8px; }
.card__name { font-size: 22px; font-weight: 900; }
.card__type { font-size: 13px; color: var(--muted-2); font-weight: 700; margin-bottom: 14px; }

.card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 12px 0 4px;
  border-top: 1px dashed var(--line);
}
.card__price b {
  font-size: 34px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -.5px;
  line-height: 1.1;
}
.card__price span { font-size: 13.5px; color: var(--muted); font-weight: 700; }
.card__per { font-size: 12.5px; color: var(--blue); font-weight: 700; margin-bottom: 12px; }

.card__save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #7ef5af;
  background: rgba(37, 211, 102, .12);
  border: 1px solid rgba(37, 211, 102, .35);
  padding: 6px 13px;
  border-radius: 999px;
  margin: 4px 0 12px;
}
.card__old { color: var(--muted-2); text-decoration: line-through; font-size: 13px; font-weight: 700; }

.card__feats { margin: 6px 0 14px; display: grid; gap: 7px; }
.card__feat {
  display: flex;
  gap: 8px;
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.55;
}
.card__feat::before {
  content: '✓';
  color: var(--blue);
  font-weight: 900;
  flex: 0 0 auto;
}
.card__feat--star::before { content: '★'; color: var(--yellow); }
.card__feat b { color: var(--yellow); font-weight: 900; }

.card__more {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
  padding: 9px;
  border-radius: 999px;
  border: 1px dashed rgba(62, 198, 240, .4);
  transition: background .25s, color .25s;
}
.card__toggle:hover { background: rgba(62, 198, 240, .12); }
.card__toggle .arw { transition: transform .3s var(--ease); }
.card.is-open .card__toggle .arw { transform: rotate(180deg); }

.card__details {
  display: grid;
  gap: 14px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s var(--ease), opacity .3s, margin .3s;
  margin-bottom: 0;
}
.card.is-open .card__details { max-height: 1400px; opacity: 1; margin-bottom: 8px; }

.detail__title {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.detail__list { display: grid; gap: 5px; }
.detail__list li {
  font-size: 13.2px;
  color: var(--muted);
  display: flex;
  gap: 7px;
  line-height: 1.5;
}
.detail__list li::before { content: '•'; color: var(--purple); font-weight: 900; }
.detail__note {
  font-size: 12.4px;
  color: #ffb4b4;
  background: rgba(255, 100, 100, .09);
  border: 1px solid rgba(255, 100, 100, .22);
  border-radius: var(--r-sm);
  padding: 8px 11px;
  line-height: 1.55;
}

.card__pick {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14.5px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  transition: background .25s, color .25s, border-color .25s;
}
.card:hover .card__pick { background: rgba(255,255,255,.14); }
.card.is-selected .card__pick {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #2b1500;
  border-color: transparent;
}

/* شريط التوفير */
.savings-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.saving {
  background: linear-gradient(150deg, rgba(37, 211, 102, .12), rgba(62, 198, 240, .07));
  border: 1px solid rgba(37, 211, 102, .28);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.saving__ico { font-size: 26px; }
.saving h4 { font-size: 15px; font-weight: 800; }
.saving p { font-size: 12.8px; color: var(--muted-2); line-height: 1.5; }
.saving b { color: #7ef5af; }

/* ============================================================
   خطوات الحجز
   ============================================================ */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.step {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-2);
  transition: all .3s var(--ease);
}
.step__num {
  width: 25px; height: 25px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1);
  font-size: 12.5px;
  font-weight: 900;
}
.step.is-done { color: #7ef5af; border-color: rgba(37,211,102,.35); background: rgba(37,211,102,.09); }
.step.is-done .step__num { background: var(--wa); color: #04220f; font-size: 0; }
.step.is-done .step__num::after { content: '✓'; font-size: 13px; font-weight: 900; }
.step.is-current {
  color: #2b1500;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 183, 3, .3);
}
.step.is-current .step__num { background: rgba(0,0,0,.2); color: #2b1500; }

/* ============================================================
   شبكة الحجز
   ============================================================ */
.booking {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 22px;
  align-items: start;
}
.booking__main { display: grid; gap: 18px; }

.panel {
  background: linear-gradient(165deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 20px 22px;
  backdrop-filter: blur(14px);
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.panel__title { font-size: 17px; font-weight: 900; display: flex; align-items: center; gap: 9px; }
.panel__step {
  width: 27px; height: 27px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  border: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  font-weight: 900;
}
.panel__note { font-size: 12.5px; color: var(--blue); font-weight: 700; }

/* الباقة المختارة */
.picked { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.picked__empty { color: var(--muted-2); font-size: 14.5px; }
.picked__card {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1 1 240px;
  background: rgba(255, 212, 0, .1);
  border: 1px solid rgba(255, 212, 0, .32);
  border-radius: var(--r);
  padding: 12px 15px;
  animation: pop-in .35s var(--ease);
}
@keyframes pop-in { from { opacity: 0; transform: translateY(8px) scale(.97); } to { opacity: 1; transform: none; } }
.picked__ico { font-size: 26px; }
.picked__name { font-size: 16px; font-weight: 900; }
.picked__meta { font-size: 12.7px; color: var(--muted); }
.picked__price { margin-inline-start: auto; font-size: 18px; font-weight: 900; color: var(--yellow); white-space: nowrap; }

/* ============================================================
   التقويم
   ============================================================ */
.cal__nav { display: flex; align-items: center; gap: 6px; }
.cal__navbtn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--glass);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  display: grid; place-items: center;
  transition: background .25s, transform .25s, opacity .25s;
}
.cal__navbtn:hover:not(:disabled) { background: rgba(255,212,0,.18); transform: scale(1.08); }
.cal__navbtn:disabled { opacity: .3; cursor: not-allowed; }
.cal__month { min-width: 130px; text-align: center; font-weight: 800; font-size: 14.5px; }

.cal__weekdays, .cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal__weekdays { margin-bottom: 8px; }
.cal__weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted-2);
  padding: 4px 0;
}
.cal__day {
  aspect-ratio: 1;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-size: 15px;
  font-weight: 800;
  transition: all .22s var(--ease);
  position: relative;
}
.cal__day small { font-size: 9.5px; font-weight: 700; color: var(--muted-2); }
.cal__day:hover:not(:disabled):not(.is-empty) {
  background: rgba(155, 79, 209, .35);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}
.cal__day:disabled { opacity: .22; cursor: not-allowed; }
.cal__day.is-empty { background: none; pointer-events: none; }
.cal__day.is-today { border-color: var(--blue); color: var(--blue); }
.cal__day.is-today small { color: var(--blue); }
.cal__day.is-selected {
  background: linear-gradient(150deg, var(--yellow), var(--yellow-2));
  color: #2b1500;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(255, 183, 3, .38);
  transform: translateY(-3px) scale(1.04);
}
.cal__day.is-selected small { color: #4a2a00; }

.quick-dates { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: all .25s var(--ease);
}
.chip:hover { background: rgba(62, 198, 240, .16); color: #fff; border-color: rgba(62,198,240,.4); }
.chip.is-active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #04222e;
  border-color: transparent;
  font-weight: 900;
}

/* ============================================================
   أوقات الحجز
   ============================================================ */
.slots { display: grid; gap: 16px; }
.slot-group__title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.slot-group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}
.slot {
  padding: 11px 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  font-size: 13.6px;
  font-weight: 800;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.slot:hover:not(:disabled) {
  background: rgba(62, 198, 240, .2);
  border-color: rgba(62,198,240,.45);
  transform: translateY(-3px);
}
.slot:disabled { opacity: .25; cursor: not-allowed; text-decoration: line-through; }
.slot.is-selected {
  background: linear-gradient(150deg, var(--yellow), var(--yellow-2));
  color: #2b1500;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(255, 183, 3, .35);
  transform: translateY(-3px) scale(1.03);
}

/* ============================================================
   ملخص الحجز
   ============================================================ */
.booking__side { position: sticky; top: 96px; }
.summary {
  background: linear-gradient(170deg, rgba(155, 79, 209, .22), rgba(255,255,255,.04) 55%);
  border: 1px solid rgba(155, 79, 209, .4);
  border-radius: var(--r-lg);
  padding: 22px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.summary__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.summary__logo { width: 44px; height: 44px; border-radius: 50%; }
.summary__head h3 { font-size: 17px; font-weight: 900; }
.summary__head small { font-size: 12px; color: var(--muted-2); }

.summary__list { display: grid; gap: 2px; margin-bottom: 16px; }
.summary__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.summary__list li:last-child { border-bottom: 0; }
.summary__k { color: var(--muted-2); font-weight: 700; }
.summary__v { font-weight: 800; text-align: left; }
.summary__v.is-set { color: var(--blue); }

.summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 212, 0, .1);
  border: 1px solid rgba(255, 212, 0, .3);
  border-radius: var(--r);
  padding: 13px 16px;
  margin-bottom: 12px;
  font-weight: 800;
}
.summary__total b { font-size: 22px; font-weight: 900; color: var(--yellow); }

.summary__save {
  background: rgba(37, 211, 102, .12);
  border: 1px solid rgba(37, 211, 102, .32);
  color: #7ef5af;
  border-radius: var(--r);
  padding: 11px 15px;
  margin-bottom: 14px;
  font-size: 13.4px;
  font-weight: 800;
  line-height: 1.6;
}
.summary__hint {
  font-size: 12.4px;
  color: var(--muted-2);
  text-align: center;
  margin-top: 11px;
  line-height: 1.6;
}

/* ============================================================
   الأسئلة الشائعة
   ============================================================ */
.faq { display: grid; gap: 11px; max-width: 860px; margin-inline: auto; }
.faq__item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0 18px;
  transition: border-color .3s, background .3s;
}
.faq__item[open] { border-color: rgba(255,212,0,.4); background: var(--glass-2); }
.faq__item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 800;
  font-size: 15.3px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
  transition: transform .3s var(--ease);
  flex: 0 0 auto;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 14.2px;
  line-height: 1.85;
}

/* ============================================================
   التذييل
   ============================================================ */
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(74, 20, 120, .3), rgba(0,0,0,.35));
  backdrop-filter: blur(10px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 32px;
  padding: 46px 20px 34px;
}
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: 14.2px; transition: color .25s, transform .25s; width: fit-content; }
.footer__col a:hover { color: var(--yellow); transform: translateX(-4px); }
.footer__about { color: var(--muted-2); font-size: 14px; line-height: 1.8; max-width: 380px; }
.footer__contact { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14.2px; }
.footer__ico { font-size: 16px; }

.footer__bar { border-top: 1px solid var(--line); padding: 15px 0; }
.footer__bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.8px;
  color: var(--muted-2);
}

/* ============================================================
   زر واتساب العائم + شريط الجوال
   ============================================================ */
.fab-wa {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 20px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), var(--wa-2));
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease);
  animation: pulse-wa 2.8s ease-in-out infinite;
}
.fab-wa svg { width: 30px; height: 30px; fill: #fff; }
.fab-wa:hover { transform: scale(1.1) rotate(-6deg); }
.fab-wa__tip {
  position: absolute;
  inset-inline-start: 68px;
  background: #fff;
  color: #1c1024;
  font-size: 12.6px;
  font-weight: 800;
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity .25s, transform .25s;
}
.fab-wa:hover .fab-wa__tip { opacity: 1; transform: translateX(0); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  60% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}

.mobile-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  background: rgba(22, 11, 35, .93);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar__info small { display: block; font-size: 11.5px; color: var(--muted-2); font-weight: 700; }
.mobile-bar__info b { font-size: 16px; font-weight: 900; color: var(--yellow); }

/* ============================================================
   إشعار
   ============================================================ */
.toast {
  position: fixed;
  bottom: 30px;
  inset-inline-end: 20px;
  z-index: 200;
  background: rgba(22, 11, 35, .96);
  border: 1px solid rgba(255, 212, 0, .45);
  color: var(--text);
  padding: 13px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
  max-width: min(340px, calc(100vw - 40px));
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ظهور العناصر عند التمرير
   ============================================================ */
/* العناصر ظاهرة افتراضياً — تختفي فقط إذا السكربت شغّال (حتى لا يضيع المحتوى) */
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.has-reveal .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   الاستجابة للشاشات
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { display: flex; flex-direction: column; align-items: center; }
  .hero__desc { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
  .hero { padding-top: 120px; }
  .booking { grid-template-columns: 1fr; }
  .booking__side { position: static; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .savings-strip { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: absolute;
    inset-inline: 14px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(22, 11, 35, .97);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 12px 14px; font-size: 16px; text-align: center; }
  .nav__link.is-active::after { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .mobile-bar { display: flex; }
  .fab-wa { bottom: 84px; }
  .toast { bottom: 92px; }
  body { padding-bottom: 74px; }
}

@media (max-width: 680px) {
  .section { padding: 54px 0; }
  .cards { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; padding-top: 34px; }
  .hero__stats { gap: 10px; }
  .hero__stat { flex: 1 1 100px; padding: 12px; }
  .hero__stat b { font-size: 24px; }
  .step { padding: 8px 13px; font-size: 13px; }
  .step__label { display: none; }
  .step { gap: 0; }
  .panel { padding: 17px 15px 19px; }
  .summary { padding: 18px 16px; }
  .cal__day { min-height: 38px; font-size: 14px; border-radius: 11px; }
  .cal__weekdays span { font-size: 10.5px; }
  .cal__days, .cal__weekdays { gap: 4px; }
  .slot-group__grid { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); }
  .btn--lg { padding: 14px 24px; font-size: 15px; }
  .card { padding: 22px 17px 18px; }
  .card__price b { font-size: 30px; }
}

@media (max-width: 380px) {
  .cal__day { min-height: 34px; font-size: 12.8px; }
  .cal__day small { display: none; }
  .nav__name { font-size: 18px; }
  .nav__logo { width: 40px; height: 40px; }
}

/* تقليل الحركة لمن يفضل ذلك */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .has-reveal .reveal { opacity: 1; transform: none; }
}
