/* ==========================================================================
   سريع ديليفري - Saree Delivery Next-Gen Luxury Stylesheet
   تصميم بصري فائق التطور مستوحى من كبرى المنصات العالمية (Dark Luxury & Cyber Aesthetics)
   ========================================================================== */

:root {
  /* ألوان الهوية النيون الفاخرة */
  --primary-fire: #FF5500;
  --primary-glow: #FF7700;
  --primary-deep: #CC4400;
  --fire-gradient: linear-gradient(135deg, #FF6600 0%, #FF3D00 50%, #E62E00 100%);
  --neon-emerald: #10B981;
  --neon-cyan: #06B6D4;
  --neon-purple: #8B5CF6;
  --gold-accent: #F59E0B;

  /* نظام الأسطح الداكنة الفاخرة (Deep Obsidian & Glass) */
  --bg-deep: #080C14;
  --bg-surface: #0E1524;
  --bg-card: rgba(17, 26, 44, 0.75);
  --bg-card-hover: rgba(22, 34, 58, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 85, 0, 0.35);
  --border-highlight: rgba(255, 255, 255, 0.15);

  --text-pure: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* الظلال العميقة والتوهجات النيونية */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-elevation: 0 16px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-fire-glow: 0 0 35px rgba(255, 85, 0, 0.3);
  --shadow-emerald-glow: 0 0 30px rgba(16, 185, 129, 0.25);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  
  /* منحنيات الحركة الفائقة السلاسة */
  --spring-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce-easing: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==================== إعادة الضبط والقواعد الأساسية ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.dark-luxury-theme {
  background-color: var(--bg-deep);
  color: var(--text-pure);
  overflow-x: hidden;
  line-height: 1.65;
  position: relative;
}

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

/* طبقة الكانفاس لتساقط الكونفيتي */
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* بقعة الضوء التفاعلية التي تتبع حركة الماوس (Spotlight Glow) */
.mouse-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s ease;
  filter: blur(40px);
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.text-center {
  text-align: center;
}

/* خلفية الشفق والشبكة السداسية التكنولوجية */
.cyber-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.aurora-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: auroraPulse 10s infinite alternate ease-in-out;
}

.light-orange {
  top: -100px;
  right: -50px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.22) 0%, transparent 70%);
}

.light-cyan {
  top: 200px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  animation-delay: 3s;
}

@keyframes auroraPulse {
  0% { transform: scale(1) translateY(0); opacity: 0.7; }
  100% { transform: scale(1.18) translateY(30px); opacity: 1; }
}

/* ==================== 1. الشريط العلوي الزجاجي (Glass Navbar) ==================== */
.landing-navbar {
  position: sticky;
  top: 0;
  background: rgba(8, 12, 20, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all 0.3s ease;
}

.landing-navbar.scrolled {
  background: rgba(8, 12, 20, 0.92);
  border-bottom-color: rgba(255, 85, 0, 0.25);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-glow {
  width: 46px;
  height: 46px;
  background: var(--fire-gradient);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--bounce-easing);
}

.brand-logo-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(30deg);
  animation: logoShine 3s infinite;
}

@keyframes logoShine {
  0% { transform: translateX(-100%) rotate(30deg); }
  30%, 100% { transform: translateX(100%) rotate(30deg); }
}

.nav-brand:hover .brand-logo-glow {
  transform: scale(1.1) rotate(-4deg);
}

.brand-text h1 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.brand-text h1 span {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--neon-emerald);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  transition: color 0.25s ease;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: var(--fire-gradient);
  border-radius: 2px;
  transition: width 0.3s var(--spring-easing);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
  right: 0;
}

.btn-live-app {
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.4);
  color: #FF7700;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.2);
  transition: var(--spring-easing);
  position: relative;
  overflow: hidden;
}

.btn-live-app:hover {
  background: var(--fire-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 85, 0, 0.6);
}

.sonar-beacon {
  width: 8px;
  height: 8px;
  background: #FF5500;
  border-radius: 50%;
  box-shadow: 0 0 10px #FF5500;
  position: relative;
}

.sonar-beacon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #FF5500;
  animation: sonarRing 1.5s infinite;
}

@keyframes sonarRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.arrow-mini {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.btn-live-app:hover .arrow-mini {
  transform: translateX(-4px);
}

/* ==================== 2. قسم البطولة الخارق (Next-Gen Hero) ==================== */
.hero-section {
  padding: 95px 0 85px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.3);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF8533;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.15);
}

.sonar-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-emerald);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.gradient-fire-text {
  background: linear-gradient(135deg, #FF7700 0%, #FF3300 50%, #FF0055 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}

/* زر النار الرئيسي */
.btn-primary-fire {
  background: var(--fire-gradient);
  color: #fff;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 35px rgba(255, 85, 0, 0.45);
  transition: all 0.35s var(--spring-easing);
  position: relative;
  overflow: hidden;
}

.btn-primary-fire:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 45px rgba(255, 85, 0, 0.6);
}

.btn-primary-fire i {
  font-size: 1.6rem;
}

.btn-text-wrap small {
  font-size: 0.74rem;
  opacity: 0.9;
  display: block;
}

.btn-text-wrap strong {
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.btn-arrow {
  font-size: 1.1rem !important;
  transition: transform 0.3s ease;
}

.btn-primary-fire:hover .btn-arrow {
  transform: translateX(-6px);
}

/* زر الهدية التفاعلي مع كونفيتي */
.btn-gamified-reward {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  color: #fff;
  padding: 16px 26px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.3s var(--spring-easing);
  backdrop-filter: blur(10px);
}

.btn-gamified-reward:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-glow);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.2);
}

.btn-gamified-reward i {
  font-size: 1.5rem;
  color: var(--gold-accent);
  animation: giftBounce 2s infinite ease-in-out;
}

@keyframes giftBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-4px) rotate(8deg); }
}

/* شريط الثقة */
.trust-metrics-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-users {
  display: flex;
  align-items: center;
}

.trust-users img, .trust-pill-count {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg-deep);
  margin-left: -12px;
  object-fit: cover;
}

.trust-pill-count {
  background: var(--fire-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

.trust-details .stars {
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
}

.trust-details .stars strong {
  color: #fff;
  margin-right: 6px;
  font-size: 1.05rem;
}

.trust-details span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==================== محاكي الهاتف التفاعلي (Interactive Smartphone Shell) ==================== */
.hero-interactive-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyber-phone-shell {
  width: 360px;
  height: 580px;
  background: #101626;
  border-radius: 46px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 85, 0, 0.25),
    inset 0 0 0 2px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--spring-easing);
}

.cyber-phone-shell:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 85, 0, 0.4);
}

/* الجزيرة التفاعلية للكاميرا */
.phone-camera-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.phone-camera-island .lens {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111A2C;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.phone-camera-island .sensor {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #06B6D4;
}

/* الشاشة الحية داخل الهاتف */
.phone-screen-live {
  flex: 1;
  background: #0B101E;
  padding: 44px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #fff;
}

.mini-user-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-glow);
  font-weight: 800;
}

.mini-time {
  color: var(--text-muted);
  font-weight: 700;
}

/* كارت الخريطة التفاعلية ورادار الفحص */
.mini-live-map-card {
  height: 200px;
  background: #131B2E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

/* خط مسح الرادار */
.radar-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06B6D4, transparent);
  animation: radarScan 3s infinite ease-in-out;
  box-shadow: 0 0 12px #06B6D4;
}

@keyframes radarScan {
  0% { top: 0%; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* خريطة الفيكتور مع مسار الكابتن المتحرك */
.road-grid-vector {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.route-line-glowing {
  position: absolute;
  left: 45px;
  right: 45px;
  height: 4px;
  background: linear-gradient(90deg, #10B981 0%, #FF7700 70%, #FF3D00 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.8);
}

.pin-store, .pin-dest {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 3;
}

.pin-store { background: #10B981; color: #fff; box-shadow: 0 0 12px #10B981; }
.pin-dest { background: #06B6D4; color: #fff; box-shadow: 0 0 12px #06B6D4; }

.courier-bike-moving {
  position: absolute;
  right: 80px;
  width: 36px;
  height: 36px;
  background: #FF5500;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px #FF5500;
  z-index: 4;
  animation: bikePatrol 4s infinite alternate ease-in-out;
}

@keyframes bikePatrol {
  0% { right: 70px; transform: scale(1); }
  100% { right: 210px; transform: scale(1.1); }
}

.mini-map-caption {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-live-tag {
  background: rgba(16, 185, 129, 0.2);
  color: var(--neon-emerald);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.eta-pill {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* بطاقة الوجبة داخل الجوال */
.mini-order-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-food-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-food-row img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-food-row h6 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.mini-food-row span {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.mini-food-row .price {
  font-size: 0.88rem;
  font-weight: 900;
  color: #FF7700;
}

.mini-stepper-row {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 800;
}

.m-step.done { color: var(--neon-emerald); }
.m-step.active { color: #FF7700; }
.m-step.pending { color: var(--text-dim); }

.mini-interactive-controls {
  display: flex;
  gap: 8px;
}

.btn-boost-courier {
  flex: 1;
  background: var(--fire-gradient);
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.4);
  transition: transform 0.2s ease;
}

.btn-boost-courier:active {
  transform: scale(0.96);
}

.btn-call-courier {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--neon-emerald);
  color: var(--neon-emerald);
  cursor: pointer;
}

/* بطاقات هولوجرام العائمة */
.hologram-card {
  position: absolute;
  z-index: 5;
  background: rgba(17, 26, 44, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 14px 20px;
  border: 1px solid var(--border-highlight);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 14px;
}

.holo-top {
  top: 35px;
  right: -35px;
  animation: holoFloat 5s infinite alternate ease-in-out;
}

.holo-bottom {
  bottom: 45px;
  left: -45px;
  animation: holoFloat 5s infinite alternate-reverse ease-in-out;
  animation-delay: 1.5s;
}

@keyframes holoFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

.holo-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.holo-icon-box.orange { background: rgba(255, 85, 0, 0.18); color: #FF7700; border: 1px solid rgba(255, 85, 0, 0.4); }
.holo-icon-box.green { background: rgba(16, 185, 129, 0.18); color: var(--neon-emerald); border: 1px solid rgba(16, 185, 129, 0.4); }

.holo-info strong {
  font-size: 0.92rem;
  color: #fff;
  display: block;
}

.holo-info p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.badge-live-gps {
  background: rgba(16, 185, 129, 0.2);
  color: var(--neon-emerald);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.btn-copy-holo {
  background: var(--fire-gradient);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

/* ==================== 3. شريط مؤشرات القوة الفائقة (Metrics Strip) ==================== */
.metrics-strip-section {
  padding: 40px 0 70px;
  position: relative;
  z-index: 2;
}

.metrics-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-box-glass {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--spring-easing), border-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 18px;
}

.metric-box-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.metric-glow-orb {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.metric-box-glass .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  color: #FF7700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.m-data h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  display: inline-block;
}

.m-data .m-plus {
  color: #FF5500;
  font-size: 1.6rem;
  font-weight: 900;
}

.m-data p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

/* ==================== 4. جدول المقارنة الفارق (Comparison Matrix) ==================== */
.comparison-section {
  padding: 85px 0;
  background: #0A0F1A;
  position: relative;
}

.section-heading {
  margin-bottom: 50px;
}

.badge-fire-tag {
  display: inline-block;
  background: rgba(255, 85, 0, 0.12);
  color: #FF7700;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 85, 0, 0.3);
}

.title-glow {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.subtitle-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevation);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 22px 28px;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  background: #0E1626;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
}

.brand-badge-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fire-gradient);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

.comparison-table .highlight-col {
  background: rgba(255, 85, 0, 0.03);
  border-left: 1px solid rgba(255, 85, 0, 0.2);
  border-right: 1px solid rgba(255, 85, 0, 0.2);
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-title i {
  font-size: 1.4rem;
  color: #FF7700;
}

.feature-title strong {
  font-size: 1.05rem;
  color: #fff;
  display: block;
}

.feature-title span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.success-cell {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.success-cell i {
  color: var(--neon-emerald);
  margin-left: 8px;
  font-size: 1.1rem;
}

.danger-cell {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.danger-cell i {
  color: var(--danger);
  margin-left: 8px;
}

/* ==================== 5. حاسبة دخل الكابتن التفاعلية (Driver Calculator) ==================== */
.calculator-section {
  padding: 85px 0;
  position: relative;
}

.calculator-card-shell {
  background: linear-gradient(135deg, rgba(22, 34, 58, 0.8) 0%, rgba(13, 20, 36, 0.9) 100%);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: 36px;
  padding: 55px 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 85, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.calculator-card-shell::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.calc-text-side h2 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.calc-text-side p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 26px;
  line-height: 1.7;
}

.calc-benefits-list {
  margin-bottom: 34px;
}

.b-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 10px;
}

.b-item i {
  color: var(--neon-emerald);
}

.btn-join-calc {
  background: var(--fire-gradient);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.45);
  transition: transform 0.3s var(--spring-easing);
}

.btn-join-calc:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 85, 0, 0.6);
}

/* السلايدرات التفاعلية */
.calc-interactive-side {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ctrl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ctrl-header label {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctrl-header strong {
  font-size: 1.15rem;
  color: #FF8533;
  font-weight: 900;
}

/* تصميم السلايدر المتطور */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fire-gradient);
  cursor: pointer;
  box-shadow: 0 0 12px #FF5500;
  transition: transform 0.2s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.calculated-income-box {
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: 20px;
  padding: 22px;
  margin-top: 10px;
}

.inc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.income-digits strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.income-digits small {
  font-size: 0.85rem;
  color: #FF8533;
  font-weight: 800;
}

.bonus-tag {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==================== 6. أشهر المطاعم المعتمدة (Brand Cubes) ==================== */
.brands-section {
  padding: 85px 0;
  background: #080C14;
}

.brands-interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.brand-cube {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  cursor: pointer;
  transition: all 0.4s var(--spring-easing);
  position: relative;
  overflow: hidden;
}

.brand-cube::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 85, 0, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-cube:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 20px 45px rgba(255, 85, 0, 0.2);
}

.brand-cube:hover::before {
  opacity: 1;
}

.brand-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-inner img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
  transition: transform 0.4s var(--bounce-easing);
}

.brand-cube:hover .brand-inner img {
  transform: scale(1.1) rotate(-4deg);
  border-color: #FF5500;
}

.brand-inner h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.brand-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.brand-rating {
  font-size: 0.82rem;
  color: var(--gold-accent);
  font-weight: 800;
  margin-bottom: 18px;
}

.btn-cube-menu {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.brand-cube:hover .btn-cube-menu {
  background: var(--fire-gradient);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

/* ==================== 7. الأسئلة الشائعة الفاخرة (Luxury FAQ) ==================== */
.faq-section {
  padding: 85px 0;
  background: #0A0F1A;
}

.faq-luxury-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: rgba(255, 85, 0, 0.3);
}

.faq-head {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  text-align: right;
}

.faq-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.35s var(--spring-easing), background 0.3s ease;
}

.faq-body {
  padding: 0 28px 22px;
  display: none;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}

.faq-card.active {
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faq-card.active .faq-body {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.faq-card.active .faq-indicator {
  transform: rotate(180deg);
  background: var(--fire-gradient);
  color: #fff;
}

/* ==================== 8. بطاقة التحميل الكبرى (Next-Gen CTA) ==================== */
.download-cta-section {
  padding: 60px 0 90px;
}

.cta-cyber-card {
  background: linear-gradient(135deg, #131A2E 0%, #090D18 100%);
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: 38px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 85, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-content-side h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content-side p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 520px;
}

.cta-store-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.store-glow-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-highlight);
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--spring-easing);
}

.store-glow-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.store-glow-btn i {
  font-size: 2.2rem;
}

.store-glow-btn small {
  font-size: 0.75rem;
  opacity: 0.8;
  display: block;
}

.store-glow-btn strong {
  font-size: 1.15rem;
  font-weight: 900;
}

.cta-web-alternative {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.web-link-glowing {
  color: #FF8533;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.web-link-glowing:hover {
  color: #FF5500;
  text-decoration: underline;
}

.cta-qr-side {
  display: flex;
  justify-content: center;
}

.qr-neon-box {
  background: #fff;
  padding: 24px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--bounce-easing);
}

.qr-neon-box:hover {
  transform: scale(1.05) rotate(1deg);
}

.qr-neon-box img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.qr-neon-box span {
  font-size: 0.8rem;
  font-weight: 800;
  color: #000;
  display: block;
}

/* ==================== 9. تذييل الموقع الفاخر (Luxury Footer) ==================== */
.luxury-footer {
  background: #04070D;
  color: #fff;
  padding: 70px 0 28px;
  border-top: 1px solid var(--border-subtle);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand-summary p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 18px 0;
  max-width: 340px;
  line-height: 1.7;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.footer-social-row a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.footer-social-row a:hover {
  background: var(--fire-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(255, 85, 0, 0.5);
}

.footer-links-col h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.94rem;
  transition: all 0.25s ease;
}

.footer-links-col ul li a:hover {
  color: #FF7700;
  padding-right: 6px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-payments-icons {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==================== نافذة الانضمام الفاخرة (Join Modal) ==================== */
.luxury-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.luxury-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.luxury-modal-card {
  background: #111827;
  border: 1px solid rgba(255, 85, 0, 0.4);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 92%;
  padding: 38px;
  position: relative;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 85, 0, 0.25);
  animation: modalPop 0.35s var(--bounce-easing);
}

.btn-close-modal {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.modal-head {
  margin-bottom: 26px;
}

.modal-head h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
}

.modal-head p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.input-field-wrap {
  margin-bottom: 18px;
}

.input-field-wrap label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.input-field-wrap input, .input-field-wrap select {
  width: 100%;
  padding: 13px 16px;
  background: #0B101E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.input-field-wrap input:focus, .input-field-wrap select:focus {
  border-color: #FF5500;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.25);
}

.btn-submit-luxury {
  width: 100%;
  background: var(--fire-gradient);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.5);
  transition: all 0.3s var(--spring-easing);
  margin-top: 16px;
}

.btn-submit-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 85, 0, 0.7);
}

/* إشعارات التوست الفاخرة */
.luxury-toast-container {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.luxury-toast {
  background: #111827;
  border: 1px solid rgba(255, 85, 0, 0.5);
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 85, 0, 0.3);
  animation: toastSlide 0.35s var(--spring-easing);
}

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

/* ==================== الاستجابة للأجهزة اللوحية والجوال ==================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 34px;
  }
  .hero-action-row {
    justify-content: center;
  }
  .trust-metrics-card {
    justify-content: center;
  }
  .metrics-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .calculator-card-shell {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
  .brands-interactive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-cyber-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-content-side p {
    margin: 0 auto 28px;
  }
  .cta-store-buttons {
    justify-content: center;
  }
  .cta-web-alternative {
    justify-content: center;
  }
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-action-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-fire, .btn-gamified-reward {
    width: 100%;
    justify-content: center;
  }
  .metrics-grid-row {
    grid-template-columns: 1fr;
  }
  .comparison-table-wrapper {
    overflow-x: auto;
  }
  .brands-interactive-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .holo-top {
    right: 5px;
  }
  .holo-bottom {
    left: 5px;
  }
}
