/* ═══════════════════════════════════════════════════════════════════
   INDEX.CSS — Tasreea Premium Homepage
   Awwwards-quality | Dark Orange Theme | RTL Arabic
   ═══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   1. HERO SECTION
   ══════════════════════════════════════════════════ */

/* ── Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--header-h, 74px) 0 60px;
}

/* ── Background ── */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.hero-grid {
  display: none;
}

.hero-radial {
  position: absolute;
  width: 900px; height: 700px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(245,158,11,0.16) 0%, transparent 65%);
  filter: blur(80px);
  animation: heroPulse 7s ease-in-out infinite;
}
.hero-radial-2 {
  position: absolute;
  width: 600px; height: 500px;
  bottom: -100px; left: 5%;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  filter: blur(100px);
  animation: heroPulse 10s ease-in-out infinite 3s;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* ── Layout ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ══════════════════ CONTENT (RIGHT) ══════════════════ */
.hero-content {
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}

/* ── Title ── */
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--tx);
  margin-bottom: 20px;
  animation: fadeInUp .7s ease .1s both;
}
.hero-title .line-2 {
  display: block;
  margin-top: 0.1em;
  padding-bottom: 0.15em;
  background: linear-gradient(135deg, #FFD080 0%, #F59E0B 50%, #D97706 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Desc ── */
.hero-desc {
  font-size: 1rem;
  color: var(--tx-2);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 34px;
  animation: fadeInUp .7s ease .2s both;
}

/* ── Buttons ── */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp .7s ease .3s both;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #F59E0B, #E08A1A);
  border: none;
  color: #fff;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(245,158,11,0.35);
  transition: all .25s;
  text-decoration: none;
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,158,11,0.5);
}

.hero-btn-outline {
  background: transparent;
  border: 1.5px solid var(--bdr-2);
  color: var(--tx);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  text-decoration: none;
}
.hero-btn-outline:hover {
  border-color: var(--or);
  color: var(--or);
  background: var(--or-glow-2);
}

/* ── Stats row ── */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface-1);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 30px;
  animation: fadeInUp .7s ease .4s both;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 4px;
}
.hero-stat-num {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--tx-3);
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--bdr);
  flex-shrink: 0;
}

/* ── Trust ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeInUp .7s ease .5s both;
}
.hero-trust-avatars {
  display: flex;
  align-items: center;
}
.hero-trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-1);
  background: linear-gradient(135deg, rgba(245,158,11,0.4), rgba(245,158,11,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: var(--tx);
  margin-right: -10px;
  box-shadow: 0 0 0 2px rgba(245,158,11,0.18);
}
.hero-trust-avatar-plus {
  background: linear-gradient(135deg, #F59E0B, #E08A1A);
  color: #fff;
}
.hero-trust-text { font-size: 0.8rem; color: var(--tx-3); line-height: 1.5; }
.hero-trust-text strong { color: var(--or); }
.hero-stars { color: #F59E0B; }

/* ══════════════════ VISUAL (LEFT) ══════════════════ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  animation: fadeIn .9s ease .2s both;
}

/* Ambient glow */
.hero-visual-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: heroPulse 5s ease-in-out infinite;
}

/* Rings */
.hero-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid; }
.hero-ring-1 {
  width: 280px; height: 280px;
  border-color: rgba(245,158,11,0.25);
  animation: ringRotate 18s linear infinite;
}
.hero-ring-2 {
  width: 400px; height: 400px;
  border-color: rgba(245,158,11,0.12);
  animation: ringRotate 28s linear infinite reverse;
}
.hero-ring-3 {
  width: 520px; height: 520px;
  border-color: rgba(245,158,11,0.06);
  animation: ringRotate 40s linear infinite;
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-ring::before {
  content: ''; position: absolute;
  top: -5px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--or); box-shadow: 0 0 16px var(--or);
}

/* ── Center image ── */
.hero-img-wrap {
  position: relative;
  z-index: 3;
  width: 240px; height: 240px;
  display: flex; align-items: center; justify-content: center;
  animation: heroImgFloat 5s ease-in-out infinite;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.03); }
}

.hero-center-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 40px rgba(245,158,11,0.7))
    drop-shadow(0 0 80px rgba(245,158,11,0.35))
    drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  position: relative;
  z-index: 2;
}

.hero-img-glow {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,158,11,0.35) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
  animation: heroPulse 3s ease-in-out infinite;
}

/* ── Float cards ── */
.hero-float-card {
  position: absolute;
  background: rgba(8,12,30,0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 14px;
  padding: 12px 16px;
  z-index: 4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 #2A2A2A;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-card-1 {
  top: 16%; left: 2%;
  animation: floatCard 3.5s ease-in-out infinite;
}
.hero-float-card-2 {
  bottom: 20%; right: 2%;
  animation: floatCard 3.5s ease-in-out infinite 1.8s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-float-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--or-glow-2);
  border: 1px solid var(--or-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--or); flex-shrink: 0;
}
.hero-float-card-val {
  font-size: 1.2rem; font-weight: 900;
  color: var(--or); line-height: 1;
}
.hero-float-card-lbl {
  font-size: 0.7rem; color: var(--tx-3); margin-top: 2px;
}

/* Platform glow */
.hero-platform-glow {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 20px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.55) 0%, transparent 70%);
  border-radius: 50%; filter: blur(14px); pointer-events: none;
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; background: var(--or);
  animation: particleRise linear infinite; opacity: 0; will-change: transform, opacity;
}
@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  15%  { opacity: 1; }
  85%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-220px) scale(0.2); }
}

/* ── Keyframes ── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
  .hero-layout   { gap: 32px; }
  .hero-title    { font-size: clamp(2.4rem, 5vw, 3.6rem); }
  .hero-visual   { min-height: 420px; }
  .hero-img-wrap { width: 200px; height: 200px; }
}

@media (max-width: 768px) {

  /* ── Section ── */
  .hero {
    padding: calc(var(--header-h, 60px) + 16px) 0 40px;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    overflow: visible !important;
  }

  /* ── Layout: single column ── */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }

  /* ── Visual — دايرة كاملة ترتفع لفوق ── */
  .hero-visual {
    order: -1;
    min-height: 340px;
    max-height: none;
    margin-top: -80px;
    margin-bottom: -20px;
    overflow: visible;
    position: relative;
  }
  .hero-img-wrap {
    width: 155px;
    height: 155px;
  }
  /* الـ glow الكبير هو اللي بيعمل الدايرة الجميلة */
  .hero-visual-glow {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(245,158,11,0.22) 0%, rgba(245,158,11,0.08) 45%, transparent 70%);
    filter: blur(45px);
  }
  /* ring-1 واضح بس خفيف */
  .hero-ring-1 { width: 220px; height: 220px; border-color: rgba(245,158,11,0.18); }
  .hero-ring-2 { width: 310px; height: 310px; border-color: rgba(245,158,11,0.07); }
  .hero-ring-3 { display: none; }
  .hero-float-card  { display: none; }
  .hero-platform-glow { display: none; }

  /* ── Content — center aligned ── */
  .hero-content {
    align-items: center;
    text-align: center;
    padding-top: 0;
  }

  /* ── Title ── */
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.15;
  }
  .hero-title .line-2 {
    margin-top: 0.06em;
    padding-bottom: 0.14em;
  }

  /* ── Desc ── */
  .hero-desc {
    font-size: 0.9rem;
    text-align: center;
    max-width: 320px;
    margin-inline: auto;
    margin-bottom: 20px;
    line-height: 1.72;
  }

  /* ── Buttons — full width stacked ── */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }
  .hero-btn-primary {
    justify-content: center;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 14px;
    width: 100%;
  }
  .hero-btn-outline {
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
    border-radius: 14px;
    border-width: 1.5px;
    width: 100%;
  }

  /* ── Stats: 2×2 grid ── */
  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--bdr);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 18px;
    width: 100%;
  }
  .hero-stat-item {
    background: var(--surface-1);
    padding: 13px 8px;
    gap: 2px;
  }
  .hero-stat-num  { font-size: 1.35rem; letter-spacing: -0.02em; }
  .hero-stat-lbl  { font-size: 0.66rem; }
  .hero-stat-divider { display: none; }

  /* ── Trust ── */
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-trust-avatar { width: 32px; height: 32px; font-size: 0.75rem; }
  .hero-trust-text   { font-size: 0.76rem; text-align: center; }
}

@media (max-width: 400px) {
  .hero-title    { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-img-wrap { width: 135px; height: 135px; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-visual   { min-height: 300px; max-height: none; }
}

/* ══════════════════════════════════════════════════
   2. STATS SECTION
   ══════════════════════════════════════════════════ */
.stats-section { padding: 0 0 90px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--bdr);
  border: 1px solid var(--bdr); border-radius: 20px; overflow: hidden;
}
.stat-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 22px; background: var(--surface-1); position: relative;
  transition: background .25s;
}
.stat-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.05), transparent);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.stat-item:hover::before { opacity: 1; }
.stat-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: var(--or-glow-2); border: 1px solid var(--or-bdr);
  display: flex; align-items: center; justify-content: center; color: var(--or);
}
.stat-icon-wrap svg { width: 22px; height: 22px; }
.stat-num { font-size: 1.65rem; font-weight: 900; color: var(--tx); line-height: 1; letter-spacing: -0.02em; }
.stat-lbl { font-size: 0.8rem; color: var(--tx-3); margin-top: 4px; }

/* ══════════════════════════════════════════════════
   3. SERVICES SECTION
   ══════════════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(245,158,11,0.07) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

/* ══ Grid — 2 columns ══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  direction: rtl;
}

/* ══ Card ══ */
.service-card {
  padding: 36px 28px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  direction: rtl;
  text-align: right;

  /* Animation */
  opacity: 0;
  transform: translateY(48px) scale(0.95);
  transition:
    opacity 0.7s cubic-bezier(0.16,1,0.3,1),
    transform 0.7s cubic-bezier(0.16,1,0.3,1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.service-card.srv-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.10s; }
.service-card:nth-child(4) { transition-delay: 0.20s; }

/* Gradient overlay */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.service-card.srv-revealed:hover::before { opacity: 1; }

/* Top accent */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0 0 2px 2px;
  z-index: 1;
}
.service-card.srv-revealed:hover::after { transform: scaleX(1); }

.service-card.srv-revealed:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(245,158,11,0.35) !important;
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.12),
    0 24px 64px rgba(245,158,11,0.10),
    0 8px 24px rgba(0,0,0,0.3);
}

.service-card-num {
  position: absolute;
  top: 16px; left: 20px;
  font-size: 5rem; font-weight: 900;
  color: var(--or);
  opacity: 0.05;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s;
}
.service-card.srv-revealed:hover .service-card-num { opacity: 0.10; }

.service-card-icon { margin-bottom: 20px; position: relative; z-index: 1; }
.service-card-title {
  font-size: 1.08rem; font-weight: 800; color: var(--tx);
  margin-bottom: 10px; line-height: 1.35;
  position: relative; z-index: 1;
}
.service-card-desc {
  font-size: 0.85rem; color: var(--tx-3);
  line-height: 1.75; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.service-card-features {
  display: flex; flex-direction: column; gap: 7px;
  position: relative; z-index: 1;
}
.service-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.80rem; color: var(--tx-3);
}
.service-feat::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--or);
}
.service-card-arrow { display: none; }

/* ══════════════════════════════════════════════════
   4. WHY SLIDER
   ══════════════════════════════════════════════════ */
.why-section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  bottom: 0; right: -100px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

/* ══ DESKTOP + TABLET: Grid ══ */
.why-outer-wrap {
  margin-top: 52px;
  container-type: inline-size;
}

.why-slider-outer {
  overflow: visible;
  cursor: default;
  user-select: auto;
  padding: 8px 0 20px;
}

/* Grid — 2 columns (3 rows × 2 cards) */
.why-slider-track {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  transform: none !important;
  transition: none !important;
  direction: rtl;
}

/* Controls مخفية على desktop */
.why-slider-controls { display: none !important; }

/* ══ CARD — نفس شكل service-card ══ */
.why-card {
  padding: 36px 28px 36px;
  position: relative;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--bdr);
  border-radius: 22px;
  direction: rtl;
  text-align: right;
  cursor: pointer;

  /* Animation */
  opacity: 0;
  transform: translateY(48px) scale(0.95);
  transition:
    opacity 0.7s cubic-bezier(0.16,1,0.3,1),
    transform 0.7s cubic-bezier(0.16,1,0.3,1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card.why-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger */
.why-card:nth-child(1) { transition-delay: 0.05s; }
.why-card:nth-child(2) { transition-delay: 0.15s; }
.why-card:nth-child(3) { transition-delay: 0.08s; }
.why-card:nth-child(4) { transition-delay: 0.18s; }
.why-card:nth-child(5) { transition-delay: 0.05s; }
.why-card:nth-child(6) { transition-delay: 0.15s; }

/* Gradient overlay */
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.why-card.why-revealed:hover::before { opacity: 1; }

/* Top accent */
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0 0 2px 2px;
  z-index: 1;
}
.why-card.why-revealed:hover::after { transform: scaleX(1); }

.why-card.why-revealed:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(245,158,11,0.35) !important;
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.12),
    0 24px 64px rgba(245,158,11,0.10),
    0 8px 24px rgba(0,0,0,0.3);
}

/* Number bg */
.why-card-bg-num {
  position: absolute;
  top: 16px; left: 20px;
  font-size: 5rem; font-weight: 900;
  color: var(--or);
  opacity: 0.05;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s;
}
.why-card.why-revealed:hover .why-card-bg-num { opacity: 0.10; }

.why-card-icon { margin-bottom: 20px; position: relative; z-index: 1; }

.why-card-title {
  font-size: 1.08rem; font-weight: 800; color: var(--tx);
  margin-bottom: 10px; line-height: 1.35;
  position: relative; z-index: 1;
}
.why-card-desc {
  font-size: 0.85rem; color: var(--tx-3);
  line-height: 1.75; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.why-card-features {
  display: flex; flex-direction: column; gap: 7px;
  position: relative; z-index: 1;
}
.why-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.80rem; color: var(--tx-3);
}
.why-feat::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--or);
}

/* ══ Slider controls (mobile only) ══ */
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--bdr-2);
  background: var(--surface-2);
  color: var(--tx-3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.slider-btn:hover {
  border-color: var(--or); color: var(--or);
  background: var(--or-glow-2); transform: scale(1.1);
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: var(--bdr-3);
  transition: all 0.3s ease;
  cursor: pointer; border: none; padding: 0;
}
.slider-dot.active { width: 28px; background: var(--or); }

/* ══ TABLET: 2 columns (same as desktop) ══ */
@media (max-width: 1024px) {
  .why-slider-track {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

/* ══════════════════════════════════════════════════
   5. RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-ring-3 { display: none; }
  .hero-ring-2 { width: 380px; height: 380px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-slider-track {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: calc(var(--header-h,60px) + 36px) 0 60px; }
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-layout > div:first-child { order: 2; }
  .hero-visual {
    order: 1;
    min-height: 340px;
    max-height: none;
    margin-bottom: -20px;
    overflow: visible;
  }
  .hero-title { font-size: clamp(2rem,7vw,2.8rem); }
  .hero-desc  { font-size: .95rem; max-width: 100%; }
  .hero-ring-1 { width: 230px; height: 230px; border-color: rgba(245,158,11,0.10); }
  .hero-ring-2 { width: 310px; height: 310px; }
  .hero-rocket-scene { width: 200px; height: 215px; }
  .hero-visual-glow  { width: 300px; height: 300px; }
  .hero-float-card-1 { top: 5%; right: -4px; transform: scale(.82); transform-origin: top right; }
  .hero-float-card-2 { bottom: 8%; left: -4px; transform: scale(.82); transform-origin: bottom left; }
  .stat-item { padding: 20px 14px; gap: 12px; }
  .stat-num  { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card {
    padding: 28px 22px 28px;
    opacity: 1 !important;
    transform: none !important;
  }
  .service-card.srv-revealed { transform: none !important; }
  /* Mobile: Stack — cards تحت بعض */
  .why-outer-wrap { overflow: visible; }
  .why-slider-outer {
    overflow: visible !important;
    cursor: default !important;
    user-select: auto !important;
    padding: 0 !important;
  }
  .why-slider-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    transform: none !important;
    transition: none !important;
    will-change: unset !important;
  }
  .why-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    /* Animation — من الأسفل */
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition:
      opacity 0.6s cubic-bezier(0.16,1,0.3,1),
      transform 0.6s cubic-bezier(0.16,1,0.3,1),
      border-color .3s,
      box-shadow .3s !important;
    transition-delay: 0ms !important;
  }
  .why-card.why-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  /* Stagger على موبايل */
  .why-card:nth-child(1) { transition-delay: 0.05s !important; }
  .why-card:nth-child(2) { transition-delay: 0.12s !important; }
  .why-card:nth-child(3) { transition-delay: 0.19s !important; }
  .why-card:nth-child(4) { transition-delay: 0.26s !important; }
  .why-card:nth-child(5) { transition-delay: 0.33s !important; }
  .why-card:nth-child(6) { transition-delay: 0.40s !important; }
  /* شيل controls */
  .why-slider-controls { display: none !important; }
  .why-slider-controls {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
  }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.9rem,8vw,2.4rem); }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .why-card { flex: 0 0 88vw !important; max-width: 320px; }
  .hero-float-card-1, .hero-float-card-2 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ring, .hero-rocket-scene, .particle,
  .hero-float-card, .hero-radial, .hero-visual-glow { animation: none !important; }
}
/* ══════════════════════════════════════════════════
   MOBILE — Hero: دايرة كاملة تندمج مع الخلفية
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header overlay — يمنع أي تداخل مع الـ navbar */
  .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: var(--header-h, 60px);
    background: transparent;
    z-index: 3;
    pointer-events: none;
  }

  /* الـ ring-1 dot مخفي — بيكشف الحافة */
  .hero-ring-1::before { display: none !important; }
  .hero-ring-2::before { display: none !important; }

  /* الـ ring-2 خفيف جداً — يعطي عمق بدون خط واضح */
  .hero-ring-2 { border-color: rgba(245,158,11,0.06) !important; }
}

/* ══════════════════════════════════════════
   MOBILE FINAL — إخفاء الـ rings كلها
   الـ glow وحده يعمل التأثير بدون خطوط
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-ring-1,
  .hero-ring-2,
  .hero-ring-3 { display: none !important; }
}


/* ══════════════════════════════════════════════════
   REVIEWS — Premium Design
   ══════════════════════════════════════════════════ */

.reviews-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

/* ── Slider Wrap ── */
.reviews-slider-wrap { margin: 52px 0 36px; position: relative; }

/* ── Skeleton ── */
.reviews-loading {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev-skel-card {
  background: var(--surface-1);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.rev-skel {
  border-radius: 8px;
  background: linear-gradient(90deg,
    var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 400% 100%;
  animation: revShimmer 1.4s ease infinite;
}
.rev-skel-avatar { width: 48px; height: 48px; border-radius: 50%; align-self: flex-end; }
.rev-skel-line   { height: 11px; width: 100%; }
.rev-skel-line.sm{ width: 55%; }
.rev-skel-line.lg{ height: 60px; border-radius: 10px; }
@keyframes revShimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

/* ── Track ── */
.reviews-track-outer {
  overflow: hidden;
  padding: 8px 2px;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}

/* ── Review Card ── */
.rev-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--surface-1);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.rev-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.rev-card:hover {
  border-color: rgba(245,158,11,0.30);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(245,158,11,0.08);
  transform: translateY(-4px);
}
.rev-card:hover::before { opacity: 1; }

/* Quote icon */
.rev-card::after {
  content: '"';
  position: absolute; top: 14px; left: 18px;
  font-size: 4rem; line-height: 1;
  color: rgba(245,158,11,0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* Card top */
.rev-card-top {
  display: flex; align-items: center; gap: 12px;
}
.rev-card-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 2px rgba(245,158,11,0.35),
    0 0 0 4px rgba(245,158,11,0.10),
    0 4px 16px rgba(0,0,0,0.3);
  position: relative;
}
.rev-card-avatar-img {
  width: 52px !important;
  height: 52px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
  position: absolute;
  top: 0; left: 0;
}
.rev-card-avatar-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, #F59E0B, #D97706);
}
.rev-card-info { flex: 1; min-width: 0; }
.rev-card-name {
  font-size: 0.95rem; font-weight: 800; color: var(--tx);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.rev-card-service {
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 700; color: var(--or);
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.18);
  padding: 2px 9px; border-radius: 999px;
  margin-bottom: 3px;
}
.rev-card-time { font-size: 0.68rem; color: var(--tx-3); }

.rev-card-stars {
  display: flex; gap: 2px; flex-shrink: 0; align-self: flex-start;
}
.rev-star { font-size: 0.95rem; color: var(--bdr-2); }
.rev-star.filled { color: #F59E0B; }

/* Comment */
.rev-card-comment {
  font-size: 0.9rem; color: var(--tx-2);
  line-height: 1.80; font-style: italic; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative; z-index: 1;
}

/* ── Controls ── */
.reviews-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
  margin-top: 32px;
}
.rev-ctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--bdr-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-2); cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}
.rev-ctrl-btn:hover {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.35);
  color: var(--or); transform: scale(1.1);
}
.rev-dots { display: flex; gap: 6px; align-items: center; }
.rev-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bdr-2); border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); padding: 0;
}
.rev-dot.active {
  background: var(--or); width: 24px; border-radius: 999px;
  box-shadow: 0 0 10px rgba(245,158,11,0.45);
}

/* ── Empty State ── */
.reviews-empty {
  text-align: center; padding: 48px 20px;
  color: var(--tx-2);
  animation: fadeInUp 0.5s ease both;
}
.reviews-empty-icon { font-size: 2.5rem; margin-bottom: 10px; opacity: 0.45; }
.reviews-empty p { font-size: 0.95rem; font-weight: 600; }

/* ── Add Button Area ── */
.reviews-add-wrap { text-align: center; margin-top: 12px; }
.reviews-add-logged {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.rev-add-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 36px; border-radius: 14px;
  background: var(--or); border: none; color: #fff;
  font-family: 'Tajawal', sans-serif;
  font-size: 1.02rem; font-weight: 800;
  cursor: pointer; letter-spacing: 0.01em;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 6px 26px rgba(245,158,11,0.38);
  position: relative; overflow: hidden;
}
.rev-add-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.14) 0%, transparent 50%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.rev-add-btn:hover {
  background: #FBBF24;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(245,158,11,0.52);
}
.rev-add-btn:active { transform: scale(0.97); background: #D97706; }
.rev-add-btn svg { position: relative; z-index: 1; }
.reviews-add-hint {
  font-size: 0.80rem; color: var(--tx-3); margin: 0;
}

/* ── Auth Bar ── */
.reviews-auth-bar { margin-top: 14px; }
.reviews-auth-bar[hidden] { display: none !important; }
.reviews-auth-bar-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  background: var(--surface-1);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 16px;
  max-width: 520px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.4s ease both;
  box-shadow: 0 4px 24px rgba(245,158,11,0.08);
}
.reviews-auth-bar-icon { font-size: 1.3rem; flex-shrink: 0; }
.reviews-auth-bar-msg {
  font-size: 0.92rem; font-weight: 700;
  color: var(--tx); flex: 1; min-width: 160px;
  text-align: center;
}
.reviews-auth-bar-btns { display: flex; gap: 8px; }
.rev-auth-link-sm { font-size: 0.86rem; }

/* ══════════════════════════════════════════════════
   ADD REVIEW MODAL — Premium Redesign
   ══════════════════════════════════════════════════ */
.rev-modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; transition: opacity 0.32s ease;
}
.rev-modal-overlay.open { opacity: 1; }
.rev-modal-overlay[hidden] { display: none !important; }

.rev-modal {
  background: linear-gradient(160deg, #191919 0%, #0F0F0F 100%);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 28px;
  padding: 40px 32px 32px;
  width: 100%; max-width: 480px;
  max-height: 92vh; overflow-y: auto;
  position: relative;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.75),
    0 0 0 1px rgba(245,158,11,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(32px) scale(0.96);
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
  scrollbar-width: none;
}
.rev-modal-overlay.open .rev-modal { transform: none; }
.rev-modal::-webkit-scrollbar { display: none; }

/* Top gradient line */
.rev-modal::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.8) 40%, rgba(251,191,36,1) 50%, rgba(245,158,11,0.8) 60%, transparent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 20px rgba(245,158,11,0.3);
}

.rev-modal-close {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.rev-modal-close:hover {
  background: rgba(239,68,68,0.14);
  border-color: rgba(239,68,68,0.30);
  color: #EF4444; transform: rotate(90deg);
}

/* Header */
.rev-modal-header { text-align: center; margin-bottom: 26px; }
.rev-modal-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.06));
  border: 1px solid rgba(245,158,11,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem; line-height: 1;
  box-shadow: 0 0 30px rgba(245,158,11,0.15);
}
.rev-modal-title {
  font-size: 1.3rem; font-weight: 900; color: #F5F5F5;
  margin: 0 0 6px; letter-spacing: -.02em;
}
.rev-modal-sub { font-size: 0.84rem; color: rgba(255,255,255,0.45); margin: 0; }

/* Form */
.rev-form { display: flex; flex-direction: column; gap: 18px; }
.rev-field { display: flex; flex-direction: column; gap: 8px; }
.rev-label {
  font-size: 0.86rem; font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.rev-required { color: #F59E0B; margin-right: 2px; }

/* Stars */
.rev-stars-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stars — 5,4,3,2,1 في HTML → 5 على اليمين في RTL */
.rev-stars-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rev-stars-input {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  direction: rtl;
}

.rev-star-btn {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.12);
  cursor: pointer;
  padding: 3px 4px;
  line-height: 1;
  transition:
    color 0.15s ease,
    transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
    text-shadow 0.15s ease;
}

.rev-star-btn.active {
  color: #F59E0B;
  text-shadow:
    0 0 10px rgba(245,158,11,0.6),
    0 0 24px rgba(245,158,11,0.3);
  transform: scale(1.05);
}

.rev-star-btn:hover {
  transform: scale(1.3) !important;
}

.rev-stars-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #F59E0B;
  min-width: 75px;
}

/* ── User Avatar في header الـ modal ── */
.rev-user-avatar-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,rgba(245,158,11,0.20),rgba(245,158,11,0.06));
  border: 2px solid rgba(245,158,11,0.30);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem; line-height: 1;
  box-shadow:
    0 0 0 4px rgba(245,158,11,0.08),
    0 0 40px rgba(245,158,11,0.20);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Textarea */
.rev-textarea {
  width: 100%; padding: 13px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px; color: #F5F5F5;
  font-family: 'Tajawal', sans-serif; font-size: 0.92rem;
  resize: vertical; min-height: 110px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.rev-textarea:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.10);
  background: rgba(245,158,11,0.03);
}
.rev-textarea::placeholder { color: rgba(255,255,255,0.25); }

/* Input text (service) */
.rev-input-icon-wrap {
  position: relative; display: flex; align-items: center;
}
.rev-input-icon {
  position: absolute; right: 13px;
  color: rgba(255,255,255,0.25); pointer-events: none;
  flex-shrink: 0;
}
.rev-input {
  width: 100%; padding: 12px 40px 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px; color: #F5F5F5;
  font-family: 'Tajawal', sans-serif; font-size: 0.92rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.rev-input:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.10);
}
.rev-input::placeholder { color: rgba(255,255,255,0.25); }

.rev-field-footer {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-top: 2px;
}

/* Errors */
.rev-err { font-size: 0.75rem; color: #F87171; display: none; }
.rev-err.show { display: block; }
.rev-char-count { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* Submit */
.rev-submit-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border: none; color: #fff;
  border-radius: 16px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1.02rem; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow:
    0 6px 24px rgba(245,158,11,0.40),
    inset 0 1px 0 rgba(255,255,255,0.20);
  position: relative; overflow: hidden;
  margin-top: 8px;
}
.rev-submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.16) 0%, transparent 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}
.rev-submit-btn:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245,158,11,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.rev-submit-btn:active { transform: scale(0.97); }
.rev-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── SUCCESS VIEW ── */
.rev-success-view {
  text-align: center;
  padding: 20px 0;
  animation: fadeInUp 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.rev-success-view[hidden] { display: none; }

.rev-success-animation {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 24px;
}

.rev-success-circle {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(245,158,11,0.50);
  animation: successPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes successPop {
  0%   { transform: scale(0.3); opacity: 0; }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

/* Sparks around circle */
.rev-success-sparks {
  position: absolute; inset: 0;
  pointer-events: none;
}
.rev-success-sparks span {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  animation: sparkFly 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.rev-success-sparks span:nth-child(1) { top:0;     left:50%; animation-delay:.05s; --dx:0px;   --dy:-40px; }
.rev-success-sparks span:nth-child(2) { top:15%;   left:85%; animation-delay:.1s;  --dx:30px;  --dy:-25px; }
.rev-success-sparks span:nth-child(3) { top:50%;   left:100%;animation-delay:.15s; --dx:40px;  --dy:0px;   }
.rev-success-sparks span:nth-child(4) { bottom:10%;left:80%; animation-delay:.1s;  --dx:25px;  --dy:30px;  }
.rev-success-sparks span:nth-child(5) { bottom:0;  left:50%; animation-delay:.05s; --dx:0px;   --dy:40px;  }
.rev-success-sparks span:nth-child(6) { top:20%;   left:0;   animation-delay:.12s; --dx:-30px; --dy:-20px; }

@keyframes sparkFly {
  0%   { transform: translate(0,0) scale(1); opacity:1; }
  100% { transform: translate(var(--dx),var(--dy)) scale(0); opacity:0; }
}

.rev-success-title {
  font-size: 1.5rem; font-weight: 900; color: #F5F5F5;
  margin: 0 0 10px; letter-spacing: -.02em;
}
.rev-success-msg {
  font-size: 0.90rem; color: rgba(255,255,255,0.50);
  margin: 0 0 20px; line-height: 1.6;
}
.rev-success-stars {
  display: flex; justify-content: center; gap: 4px;
  margin-bottom: 28px;
}
.rev-success-close {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 36px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
}
.rev-success-close:hover {
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.25);
  color: #F59E0B;
}

/* Spinner */
.rev-spinner {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: revSpin 0.7s linear infinite;
  display: inline-block; flex-shrink: 0;
}
@keyframes revSpin { to { transform: rotate(360deg); } }


/* ── Service Chips ── */
.rev-service-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.rev-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.60);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.rev-chip:hover {
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.30);
  color: #F59E0B;
  transform: translateY(-2px);
}
.rev-chip.active {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.50);
  color: #F59E0B;
  box-shadow: 0 0 12px rgba(245,158,11,0.20);
}
.rev-chip-other.active {
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.40);
  color: #A5B4FC;
}
.rev-service-input {
  animation: fadeInUp 0.3s ease both;
}

/* Responsive */
@media (max-width: 480px) {
  .rev-modal { padding: 28px 16px 20px; border-radius: 20px; }
  .rev-modal-title { font-size: 1.1rem; }
  .rev-star-btn { font-size: 1.7rem; }
  .rev-chip { font-size: 0.78rem; padding: 7px 11px; }
}


/* ══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rev-card { flex: 0 0 calc(50% - 10px); }
  .reviews-loading { grid-template-columns: repeat(2,1fr); }
  .reviews-loading .rev-skel-card:last-child { display: none; }
}
@media (max-width: 640px) {
  .reviews-section { padding: 64px 0; }
  .rev-card { flex: 0 0 100%; }
  .reviews-loading { grid-template-columns: 1fr; }
  .reviews-loading .rev-skel-card:not(:first-child) { display: none; }
  .rev-modal { padding: 28px 18px; border-radius: 20px; }
  .rev-modal-title { font-size: 1.15rem; }
  .reviews-auth-bar-inner { gap: 10px; padding: 14px 16px; }
  .reviews-auth-bar-btns { flex-direction: column; width: 100%; }
  .rev-auth-link-sm { text-align: center; }
}
@media (max-width: 380px) {
  .rev-add-btn { padding: 13px 24px; font-size: 0.95rem; }
}


/* ══ LIGHT MODE — index page specific ══ */

/* شيل الـ radial glow كامل في light mode */
body.light-mode .hero-radial,
body.light-mode .hero-radial-2,
body.light-mode .hero-bg { display: none !important; }

/* light mode hero خلفية نظيفة */
body.light-mode .hero {
  background: linear-gradient(180deg, #FAFAFA 0%, #F4F4F5 100%) !important;
}

body.light-mode .hero-text .display-1 span:first-child { color: var(--tx) !important; }
body.light-mode .hero-text .display-1 span.or { color: var(--or) !important; }
body.light-mode .particle { background: var(--or) !important; }

body.light-mode .hero-stat-item {
  background: var(--surface-2) !important;
  border-color: var(--bdr) !important;
}
body.light-mode .hero-social-proof { color: var(--tx-3) !important; }
body.light-mode .social-proof-text { color: var(--tx-3) !important; }
body.light-mode .social-proof-avatars .avatar-initial { border-color: var(--bg-1) !important; }

body.light-mode .why-card-bg-num { color: var(--or) !important; opacity: 0.06 !important; }
body.light-mode .service-card-num { color: var(--or) !important; opacity: 0.08 !important; }
body.light-mode .service-feat::before { background: var(--or) !important; }
body.light-mode .why-feat::before { background: var(--or) !important; }

/* Reviews section */
body.light-mode .reviews-section { background: var(--bg-2) !important; }
body.light-mode .rev-add-btn { box-shadow: 0 6px 20px rgba(245,158,11,0.25) !important; }
body.light-mode .rev-ctrl-btn {
  background: var(--surface-1) !important;
  border-color: var(--bdr-2) !important;
  color: var(--tx-2) !important;
}
body.light-mode .rev-dot { background: var(--bdr-3) !important; }
body.light-mode .rev-dot.active { background: var(--or) !important; }

/* Slider controls */
body.light-mode .slider-btn {
  background: var(--surface-1) !important;
  border-color: var(--bdr-2) !important;
  color: var(--tx-3) !important;
}
body.light-mode .slider-dot { background: var(--bdr-3) !important; }
body.light-mode .slider-dot.active { background: var(--or) !important; }