/* ============================================================
   TAGS  |  الملف الرئيسي للتنسيقات
   الهوية: برتقالي #FF5100 + نبيتي #6B0000 + بني داكن #210A03
   يدعم: RTL  |  الوضع الفاتح والداكن  |  الاستجابة الكاملة
   ============================================================ */

/* ---------- 1) المتغيرات ---------- */
:root {
  /* ألوان الهوية الثابتة */
  --brand:        #FF5100;
  --brand-dark:   #D64200;
  --brand-light:  #FF7A3D;
  --brand-soft:   #FFF0E8;
  --teal:         #6B0000;
  --teal-light:   #8D1B00;
  --teal-soft:    #F6E9E6;
  --green:        #2BB673;
  --red:          #E4572E;
  --yellow:       #F2B01E;
  --purple:       #7C5CFF;

  --brand-gradient: linear-gradient(135deg, #FF5100 0%, #FF7A3D 100%);
  --teal-gradient:  linear-gradient(135deg, #210A03 0%, #6B0000 100%);

  /* الوضع الفاتح (افتراضي) */
  --bg:           #FFFFFF;
  --bg-alt:       #F6F8FA;
  --bg-soft:      #FBFCFD;
  --surface:      #FFFFFF;
  --surface-2:    #F2F5F7;
  --text:         #16212B;
  --text-soft:    #5A6B77;
  --text-muted:   #8A98A3;
  --border:       #E3E9ED;
  --border-strong:#CFD8DE;
  --shadow-sm:    0 2px 8px rgba(16, 40, 56, .06);
  --shadow:       0 8px 26px rgba(16, 40, 56, .09);
  --shadow-lg:    0 18px 50px rgba(16, 40, 56, .14);
  --header-bg:    rgba(255, 255, 255, .92);
  --overlay:      rgba(16, 33, 43, .55);

  /* قياسات */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1240px;
  --header-h:  76px;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --font: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
}

/* الوضع الداكن */
[data-theme="dark"] {
  --bg:           #130704;
  --bg-alt:       #1B0B07;
  --bg-soft:      #180905;
  --surface:      #24100B;
  --surface-2:    #31150E;
  --text:         #E9F1F5;
  --text-soft:    #A9BAC5;
  --text-muted:   #7C8F9B;
  --border:       #3E1C14;
  --border-strong:#57261A;
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, .4);
  --shadow:       0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lg:    0 20px 55px rgba(0, 0, 0, .55);
  --header-bg:    rgba(19, 7, 4, .92);
  --overlay:      rgba(0, 0, 0, .65);
  --brand-soft:   rgba(242, 106, 33, .14);
  --teal-soft:    rgba(107, 0, 0, .24);
}

/* ---------- 2) إعادة الضبط ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  overflow-x: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { margin: 0 0 1em; color: var(--text-soft); }

::selection { background: var(--brand); color: #fff; }

/* شريط التمرير */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ---------- 3) أدوات التخطيط ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(50px, 7vw, 90px) 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 55px);
}
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: .35em; }
.section-head h2 span { color: var(--brand); }
.section-head p { color: var(--text-soft); margin: 0; }

.title-line {
  display: block;
  width: 70px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: var(--brand-gradient);
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 24px; }
.hidden { display: none !important; }

/* ---------- 4) الأزرار ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.6;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(242,106,33,.32); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 10px 26px rgba(242,106,33,.42); }

.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(15,76,92,.3); }
.btn-teal:hover { background: var(--teal-light); }

.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }

.btn-ghost { border-color: var(--border-strong); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: #fff8f3; }

.btn-light { background: var(--surface-2); color: var(--text); }
.btn-light:hover { background: var(--border); }

.btn-danger { background: var(--red); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 15px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- 5) الشريط العلوي ---------- */
.topbar {
  background: var(--teal);
  color: #EAF4F7;
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-msg { display: flex; align-items: center; gap: 8px; }
.topbar-msg i { color: var(--brand-light); }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; opacity: .9; transition: .2s; }
.topbar-links a:hover { opacity: 1; color: var(--brand-light); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: .75rem;
}
.topbar-social a:hover { background: var(--brand); color: #fff; }

/* ---------- 6) الهيدر ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { width: 145px; height: 54px; object-fit: contain; background:#fff; border-radius:10px; padding:3px 6px; }
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .5px;
  box-shadow: 0 6px 16px rgba(242,106,33,.35);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text b { font-size: 1.3rem; font-weight: 900; color: var(--text); letter-spacing: -.5px; }
.logo-text small { font-size: .68rem; color: var(--text-muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 15px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--text-soft);
  transition: .22s var(--ease);
}
.nav a:hover { color: var(--brand); background: var(--brand-soft); }
.nav a.active { color: var(--brand); background: var(--brand-soft); font-weight: 700; }

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

.icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text-soft);
  border: 1px solid var(--border);
  transition: .22s var(--ease);
}
.icon-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* زر تبديل الوضع */
.theme-toggle { position: relative; overflow: hidden; }
.theme-toggle .fa-sun { display: none; }
[data-theme="dark"] .theme-toggle .fa-sun { display: block; }
[data-theme="dark"] .theme-toggle .fa-moon { display: none; }

.burger { display: none; }

/* قائمة الموبايل */
.mobile-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(320px, 84vw);
  background: var(--surface);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  padding: 24px 20px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border-inline-end: 1px solid var(--border);
}
[dir="rtl"] .mobile-nav { inset: 0 0 0 auto; transform: translateX(100%); }
.mobile-nav.open { transform: translateX(0) !important; }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-soft);
  transition: .2s;
}
.mobile-nav a.m-link i { width: 20px; color: var(--brand); }
.mobile-nav a.m-link:hover,
.mobile-nav a.m-link.active { background: var(--brand-soft); color: var(--brand); }
.mobile-nav .m-actions { margin-top: 22px; display: grid; gap: 10px; }

.backdrop {
  position: fixed; inset: 0;
  background: var(--overlay);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: .3s var(--ease);
  backdrop-filter: blur(3px);
}
.backdrop.show { opacity: 1; visibility: visible; }

/* ---------- 7) السلايدر / الهيرو ---------- */
.hero {
  position: relative;
  background: var(--teal-gradient);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(242,106,33,.35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(22,105,122,.6), transparent 50%);
}
.hero-slider { position: relative; }
.hero-slide {
  display: none;
  position: relative;
  z-index: 2;
  padding: clamp(55px, 8vw, 100px) 0;
}
.hero-slide.active { display: block; animation: fadeUp .6s var(--ease); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-size: .84rem; font-weight: 700;
  margin-bottom: 18px;
}
.hero-badge i { color: var(--brand-light); }
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero h1 span { color: var(--brand-light); }
.hero p { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-card {
  width: 100%; max-width: 380px;
  aspect-ratio: 1.6/1;
  border-radius: var(--radius-lg);
  background: var(--brand-gradient);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-4deg);
  transition: transform .5s var(--ease);
  position: relative; overflow: hidden;
}
.hero-card:hover { transform: rotate(0) scale(1.03); }
.hero-card::after {
  content: '';
  position: absolute; inset: auto -30% -60% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.hero-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hero-card-chip {
  width: 44px; height: 32px; border-radius: 6px;
  background: linear-gradient(135deg,#FFD98A,#E0A93B);
}
.hero-card-brand { font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; }
.hero-card-num { font-size: 1.15rem; letter-spacing: 3px; font-weight: 700; direction: ltr; text-align: left; }
.hero-card-foot { display: flex; justify-content: space-between; font-size: .78rem; opacity: .95; }

.hero-dots {
  position: absolute; bottom: 22px; inset-inline: 0;
  display: flex; justify-content: center; gap: 9px; z-index: 5;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: .25s;
}
.hero-dots button.active { width: 30px; border-radius: 100px; background: var(--brand); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center; z-index: 5;
  transition: .25s;
}
.hero-arrow:hover { background: var(--brand); border-color: var(--brand); }
.hero-arrow.prev { inset-inline-end: 18px; }
.hero-arrow.next { inset-inline-start: 18px; }

/* شريط البحث السريع */
.quick-search {
  position: relative; z-index: 6;
  margin-top: -38px;
}
.quick-search-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 12px;
}
.quick-search-box .field { margin: 0; }

/* ---------- 8) البطاقات العامة ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand); }
.card-body { padding: 22px; }

/* بطاقة تصنيف */
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 30px 18px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .3s var(--ease);
}
.cat-card:hover {
  border-color: var(--brand);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.cat-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  color: #fff;
  transition: transform .35s var(--ease);
}
.cat-card:hover .cat-icon { transform: rotate(-8deg) scale(1.08); }
.cat-card h3 { font-size: 1.02rem; margin: 0; }
.cat-card small { color: var(--text-muted); font-size: .8rem; }
.cat-count {
  font-size: .75rem; font-weight: 700;
  padding: 3px 12px; border-radius: 100px;
  background: var(--brand-soft); color: var(--brand);
}

/* بطاقة خدمة */
.service-card {
  padding: 34px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset-block-start: 0; inset-inline: 0;
  height: 4px; background: var(--brand-gradient);
  transform: scaleX(0); transition: transform .35s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card .s-icon {
  width: 78px; height: 78px; margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.9rem;
  background: var(--brand-soft); color: var(--brand);
  transition: .35s var(--ease);
}
.service-card:hover .s-icon { background: var(--brand); color: #fff; }
.service-card.featured {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 45px rgba(242,106,33,.35);
}
.service-card.featured h3, .service-card.featured p { color: #fff; }
.service-card.featured p { opacity: .93; }
.service-card.featured .s-icon { background: rgba(255,255,255,.2); color: #fff; }
.service-card.featured::before { background: #fff; }

/* بطاقة متجر */
.merchant-card { display: flex; flex-direction: column; height: 100%; }
.merchant-media {
  position: relative;
  height: 165px;
  background: var(--teal-gradient);
  display: grid; place-items: center;
  overflow: hidden;
}
.merchant-media img { width: 100%; height: 100%; object-fit: cover; }
.merchant-media .m-initial {
  font-size: 2.4rem; font-weight: 900; color: rgba(255,255,255,.85);
}
.discount-badge {
  position: absolute; inset-block-start: 12px; inset-inline-start: 12px;
  background: var(--brand); color: #fff;
  padding: 5px 14px; border-radius: 100px;
  font-size: .82rem; font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.featured-badge {
  position: absolute; inset-block-start: 12px; inset-inline-end: 12px;
  background: var(--yellow); color: #3d2b00;
  padding: 5px 12px; border-radius: 100px;
  font-size: .74rem; font-weight: 800;
}
.merchant-card .card-body { flex: 1; display: flex; flex-direction: column; }
.merchant-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.merchant-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: .82rem; color: var(--text-muted);
  margin-bottom: 12px;
}
.merchant-meta span { display: inline-flex; align-items: center; gap: 5px; }
.merchant-meta i { color: var(--brand); }
.merchant-card .card-foot {
  margin-top: auto; padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cat-tag {
  font-size: .74rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  background: var(--teal-soft); color: var(--teal-light);
}
[data-theme="dark"] .cat-tag { color: #7ED0E0; }

/* بطاقة عرض */
.offer-card {
  display: flex; gap: 18px; align-items: center;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: .3s var(--ease);
}
.offer-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.offer-percent {
  flex-shrink: 0;
  width: 76px; height: 76px;
  border-radius: 18px;
  background: var(--brand-gradient);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.2rem;
  line-height: 1;
}
.offer-percent small { display: block; font-size: .6rem; font-weight: 600; }
.offer-card h4 { margin: 0 0 4px; font-size: 1rem; }
.offer-card p { margin: 0; font-size: .86rem; }
.offer-code {
  display: inline-block; margin-top: 8px;
  padding: 4px 14px; border-radius: 8px;
  border: 1px dashed var(--brand);
  color: var(--brand); font-weight: 800; font-size: .82rem;
  direction: ltr;
}

/* ---------- 9) قسم "لماذا تاجز" ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.why-list { display: grid; gap: 18px; margin-top: 26px; }
.why-item { display: flex; gap: 15px; align-items: flex-start; }
.why-item .w-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
  font-weight: 800;
}
.why-item h4 { margin: 0 0 3px; font-size: 1.02rem; }
.why-item p { margin: 0; font-size: .9rem; }

.phone-mock {
  position: relative;
  width: 270px; margin-inline: auto;
  aspect-ratio: 9/18.5;
  background: var(--surface);
  border: 10px solid var(--text);
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.phone-mock::before {
  content: '';
  position: absolute; inset-block-start: 0; inset-inline: 50% auto;
  transform: translateX(50%);
  width: 110px; height: 22px;
  background: var(--text);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  height: 100%;
  background: var(--bg-alt);
  padding: 34px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.ph-bar { height: 12px; border-radius: 6px; background: var(--surface-2); }
.ph-bar.w60 { width: 60%; }
.ph-bar.w40 { width: 40%; }
.ph-hero {
  height: 92px; border-radius: 14px;
  background: var(--brand-gradient);
}
.ph-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ph-tile { height: 58px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.ph-tile.teal { background: var(--teal); border-color: var(--teal); }

/* ---------- 10) الإحصائيات ---------- */
.stats-band {
  background: var(--teal-gradient);
  padding: 46px 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(242,106,33,.3), transparent 50%);
}
.stats-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
  text-align: center;
}
.stat-item .st-icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: grid; place-items: center;
  color: var(--brand-light); font-size: 1.25rem;
}
.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: #fff; line-height: 1;
  direction: ltr;
}
.stat-label { color: rgba(255,255,255,.85); font-size: .93rem; margin-top: 6px; }

/* ---------- 11) الشركاء ---------- */
.partners-track {
  display: flex; gap: 22px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-row { display: flex; gap: 22px; animation: marquee 32s linear infinite; }
.partners-track:hover .partners-row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.partner-item {
  flex-shrink: 0;
  min-width: 165px; height: 92px;
  display: grid; place-items: center;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 800; color: var(--text-soft);
  transition: .3s var(--ease);
}
.partner-item:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-4px); }
.partner-item img { max-height: 52px; object-fit: contain; filter: grayscale(1); transition: .3s; }
.partner-item:hover img { filter: grayscale(0); }

/* ---------- 12) الرسالة / CTA ---------- */
.mission-box {
  background: linear-gradient(120deg, #210A03 0%, #6B0000 50%, #FF5100 100%);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 55px);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  position: relative; overflow: hidden;
}
.mission-box::after {
  content: '';
  position: absolute; inset: auto -80px -120px auto;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.mission-box h2, .mission-box h3 { color: #fff; }
.mission-box p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.mission-icon {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: grid; place-items: center;
  font-size: 3rem;
  position: relative; z-index: 2;
}

.cta-band {
  background: var(--brand-gradient);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 52px);
  color: #fff;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  box-shadow: 0 20px 50px rgba(242,106,33,.3);
}
.cta-band h2 { color: #fff; margin-bottom: .2em; }
.cta-band p { color: rgba(255,255,255,.92); margin: 0; }

/* ---------- 13) الأسعار ---------- */
.plan-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  position: relative;
  transition: .35s var(--ease);
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan-card.popular {
  border-color: var(--brand);
  box-shadow: 0 18px 45px rgba(242,106,33,.2);
  transform: scale(1.03);
}
.plan-tag {
  position: absolute; inset-block-start: -14px; inset-inline: 50% auto;
  transform: translateX(50%);
  background: var(--brand); color: #fff;
  padding: 5px 20px; border-radius: 100px;
  font-size: .78rem; font-weight: 800;
  white-space: nowrap;
}
.plan-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.plan-price { font-size: 2.6rem; font-weight: 900; color: var(--brand); line-height: 1; }
.plan-price small { font-size: .95rem; font-weight: 600; color: var(--text-muted); }
.plan-old { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; }
.plan-duration { color: var(--text-muted); font-size: .88rem; margin-bottom: 20px; }
.plan-features { text-align: start; display: grid; gap: 11px; margin-bottom: 26px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--text-soft); }
.plan-features i { color: var(--green); margin-top: 6px; font-size: .8rem; }
.plan-card .btn { margin-top: auto; }

/* ---------- 14) النماذج ---------- */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
}
.field label .req { color: var(--red); }

.input, .select, .textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  transition: .22s var(--ease);
  font-size: .95rem;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(242,106,33,.14);
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.textarea { min-height: 130px; resize: vertical; line-height: 1.8; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A98A3' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 17px;
  padding-inline-start: 16px;
  padding-inline-end: 42px;
}
.field-hint { font-size: .8rem; color: var(--text-muted); margin-top: 5px; }

.input-icon { position: relative; }
.input-icon i {
  position: absolute; inset-block-start: 50%; inset-inline-start: 15px;
  transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.input-icon .input { padding-inline-start: 44px; }

.checkbox { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--text-soft); cursor: pointer; }
.checkbox input { width: 17px; height: 17px; accent-color: var(--brand); cursor: pointer; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

/* ---------- 15) التنبيهات ---------- */
.alert {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: .92rem; font-weight: 600;
  border: 1px solid transparent;
  animation: fadeUp .35s var(--ease);
}
.alert span { flex: 1; }
.alert-close { font-size: 1.4rem; line-height: 1; opacity: .6; }
.alert-close:hover { opacity: 1; }
.alert-success { background: rgba(43,182,115,.12); color: #1E8A56; border-color: rgba(43,182,115,.3); }
.alert-error   { background: rgba(228,87,46,.12);  color: #C63F1C; border-color: rgba(228,87,46,.3); }
.alert-info    { background: rgba(22,105,122,.12); color: var(--teal-light); border-color: rgba(22,105,122,.3); }
[data-theme="dark"] .alert-success { color: #5DD79C; }
[data-theme="dark"] .alert-error   { color: #FF8E6B; }
[data-theme="dark"] .alert-info    { color: #6FC7DA; }

/* ---------- 16) بانر الصفحات الداخلية ---------- */
.page-banner {
  background: var(--teal-gradient);
  padding: clamp(42px, 6vw, 70px) 0;
  color: #fff;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 25%, rgba(242,106,33,.32), transparent 48%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: .2em; }
.page-banner p { color: rgba(255,255,255,.85); margin: 0; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 14px; font-size: .87rem;
  color: rgba(255,255,255,.75);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--brand-light); }
.breadcrumb i { font-size: .65rem; opacity: .6; }

/* ---------- 17) الفلاتر ---------- */
.filter-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.filter-bar .field { margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.chip {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  font-size: .88rem; font-weight: 600;
  color: var(--text-soft);
  transition: .22s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- 18) الترقيم ---------- */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 7px; margin-top: 42px; flex-wrap: wrap;
}
.page-link {
  min-width: 42px; height: 42px;
  display: grid; place-items: center;
  padding: 0 12px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 700; font-size: .9rem;
  color: var(--text-soft);
  transition: .22s;
}
.page-link:hover { border-color: var(--brand); color: var(--brand); }
.page-link.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.page-dots { color: var(--text-muted); padding: 0 4px; }

/* ---------- 19) الأسئلة الشائعة ---------- */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 13px;
  overflow: hidden;
  transition: .25s var(--ease);
}
.faq-item.open { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px;
  font-weight: 700; font-size: 1rem;
  text-align: start;
  color: var(--text);
}
.faq-q i { color: var(--brand); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  padding: 0 22px;
  color: var(--text-soft);
  font-size: .93rem;
}
.faq-item.open .faq-a { max-height: 460px; padding: 0 22px 20px; }

/* ---------- 20) الفوتر ---------- */
.footer {
  background: var(--teal);
  color: #C9DDE3;
  margin-top: auto;
  position: relative;
}
[data-theme="dark"] .footer { background: #08171D; }
.footer-top { padding: 58px 0 38px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 36px;
}
.footer h4 {
  color: #fff; font-size: 1.05rem; margin-bottom: 20px;
  position: relative; padding-bottom: 11px;
}
.footer h4::after {
  content: '';
  position: absolute; inset-block-end: 0; inset-inline-start: 0;
  width: 38px; height: 3px; border-radius: 3px;
  background: var(--brand);
}
.footer p { color: #A9C4CC; font-size: .9rem; }
.footer-links { display: grid; gap: 11px; }
.footer-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; color: #B7CFD6;
  transition: .22s;
}
.footer-links a i { font-size: .6rem; color: var(--brand); transition: .22s; }
.footer-links a:hover { color: #fff; padding-inline-start: 5px; }

.footer-contact { display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: #B7CFD6; }
.footer-contact i {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: var(--brand-light);
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.09);
  display: grid; place-items: center;
  color: #fff; transition: .25s var(--ease);
}
.footer-social a:hover { background: var(--brand); transform: translateY(-3px); }

.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .9rem;
}
.newsletter-form input::placeholder { color: #8FAAB3; }
.newsletter-form input:focus { outline: none; border-color: var(--brand); }

.app-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.app-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  transition: .25s;
}
.app-badge:hover { background: var(--brand); border-color: var(--brand); }
.app-badge i { font-size: 1.5rem; color: #fff; }
.app-badge span { display: flex; flex-direction: column; line-height: 1.25; color: #fff; }
.app-badge small { font-size: .65rem; opacity: .8; }
.app-badge b { font-size: .85rem; }

.footer-bottom {
  background: var(--brand);
  padding: 16px 0;
  color: #fff;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom a { font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- 21) الأزرار العائمة ---------- */
.float-actions {
  position: fixed;
  inset-block-end: 24px; inset-inline-start: 24px;
  z-index: 800;
  display: grid; gap: 11px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 1.25rem;
  box-shadow: var(--shadow);
  transition: .25s var(--ease);
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-top { background: var(--teal); opacity: 0; visibility: hidden; }
.float-top.show { opacity: 1; visibility: visible; }

/* ---------- 22) حالة فارغة ---------- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
}
.empty-state i { font-size: 3.2rem; color: var(--border-strong); margin-bottom: 16px; }
.empty-state h3 { color: var(--text-soft); }
.empty-state p { margin-bottom: 20px; }

/* ---------- 23) صفحات الدخول ---------- */
.auth-wrap {
  min-height: calc(100vh - var(--header-h));
  display: grid; place-items: center;
  padding: 50px 20px;
  background: var(--bg-alt);
}
.auth-card {
  width: 100%; max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 42px);
}
.auth-head { text-align: center; margin-bottom: 26px; }
.auth-head .logo-mark { width: 60px; height: 60px; margin: 0 auto 16px; font-size: 1.35rem; }
.auth-head h1 { font-size: 1.55rem; margin-bottom: .25em; }
.auth-head p { font-size: .92rem; margin: 0; }
.auth-foot { text-align: center; margin-top: 22px; font-size: .9rem; color: var(--text-soft); }
.auth-foot a { color: var(--brand); font-weight: 700; }

/* ---------- 24) لوحة العضو ---------- */
.dash-grid { display: grid; grid-template-columns: 260px 1fr; gap: 26px; align-items: start; }
.dash-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.dash-user { text-align: center; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.dash-avatar {
  width: 72px; height: 72px; margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: #fff; font-size: 1.7rem; font-weight: 800;
}
.dash-menu { display: grid; gap: 5px; }
.dash-menu a {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 600;
  color: var(--text-soft);
  transition: .2s;
}
.dash-menu a i { width: 18px; }
.dash-menu a:hover, .dash-menu a.active { background: var(--brand-soft); color: var(--brand); }

.member-card {
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 16px 40px rgba(242,106,33,.3);
}
.member-card::after {
  content: '';
  position: absolute; inset: auto -40px -90px auto;
  width: 210px; height: 210px; border-radius: 50%;
  background: rgba(255,255,255,.13);
}
.member-card .mc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.member-card .mc-num {
  font-size: 1.3rem; letter-spacing: 3px; font-weight: 800;
  direction: ltr; text-align: left; margin-bottom: 16px;
}
.member-card .mc-foot { display: flex; justify-content: space-between; font-size: .82rem; position: relative; z-index: 2; }

.info-list { display: grid; gap: 0; }
.info-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .93rem;
}
.info-list li:last-child { border-bottom: 0; }
.info-list b { color: var(--text); font-weight: 700; }
.info-list span { color: var(--text-soft); }

.badge {
  display: inline-block;
  padding: 3px 13px; border-radius: 100px;
  font-size: .76rem; font-weight: 700;
}
.badge-success { background: rgba(43,182,115,.15); color: #1E8A56; }
.badge-warn    { background: rgba(242,176,30,.18); color: #A8760A; }
.badge-danger  { background: rgba(228,87,46,.15); color: #C63F1C; }
.badge-muted   { background: var(--surface-2); color: var(--text-muted); }
[data-theme="dark"] .badge-success { color: #5DD79C; }
[data-theme="dark"] .badge-warn    { color: #F5C455; }
[data-theme="dark"] .badge-danger  { color: #FF8E6B; }

/* ---------- 25) تفاصيل المتجر ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.detail-hero {
  height: 260px;
  border-radius: var(--radius-lg);
  background: var(--teal-gradient);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  margin-bottom: 26px;
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero .big-initial { font-size: 4.5rem; font-weight: 900; color: rgba(255,255,255,.85); }
.side-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}
.side-box h4 { font-size: 1.02rem; margin-bottom: 16px; }
.big-discount {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--brand-gradient);
  color: #fff;
  margin-bottom: 20px;
}
.big-discount .bd-num { font-size: 3rem; font-weight: 900; line-height: 1; direction: ltr; }
.big-discount p { color: rgba(255,255,255,.9); margin: 6px 0 0; }

.prose { color: var(--text-soft); line-height: 2; }
.prose h3 { margin-top: 28px; }
.prose ul { display: grid; gap: 10px; margin: 14px 0; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; }
.prose ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--green); font-size: .85rem; margin-top: 6px;
}

/* ---------- 26) الوظائف ---------- */
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: .3s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.job-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-4px); }
.job-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.job-tag {
  font-size: .76rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  background: var(--surface-2); color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 5px;
}
.job-tag i { color: var(--brand); font-size: .72rem; }
.job-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- 27) صندوق معلومات التواصل ---------- */
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: .3s var(--ease);
}
.contact-info-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.contact-info-card .ci-icon {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-size: 1.2rem;
}
.contact-info-card h4 { margin: 0 0 4px; font-size: 1rem; }
.contact-info-card p { margin: 0; font-size: .9rem; word-break: break-word; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: none; }
[data-theme="dark"] .map-frame iframe { filter: invert(.9) hue-rotate(180deg); }

/* ---------- 28) الحركات ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ---------- 29) الاستجابة ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-side { position: static; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: grid; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { margin-top: 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .quick-search-box { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .mission-box { grid-template-columns: 1fr; text-align: center; }
  .mission-icon { margin-inline: auto; }
}

@media (max-width: 720px) {
  .topbar-links .hide-sm { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { text-align: center; justify-content: center; }
  .plan-card.popular { transform: none; }
  .offer-card { flex-direction: column; text-align: center; }
  .float-actions { inset-block-end: 16px; inset-inline-start: 16px; }
  .logo-text small { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .btn { padding: 11px 22px; }
  .hero-arrow { display: none; }
  .section { padding: 42px 0; }
}

/* ---------- 30) الطباعة ---------- */
@media print {
  .header, .topbar, .footer, .float-actions, .btn, .mobile-nav, .backdrop { display: none !important; }
  body { background: #fff; color: #000; }
}
