/* ============================================================
   mainnew.css — النسخة الكاملة
   cards / exchange / footer / header / payme / services / smallservices
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;700;800;900&display=swap');


/* ============================================================
   1. HEADER / HERO
   ============================================================ */

.hero-section {
  background: linear-gradient(140deg,#0d47a1 0%,#1565c0 25%,#1e88e5 60%,#29b6f6 100%);
  min-height: 100vh;
  position: relative;
  color: #fff;
  overflow: hidden;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hb-nav-desktop { position: relative; z-index: 10; }

.hn-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.hn-actions { display: flex; align-items: center; gap: 10px; }

.hn-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  transition: all .25s;
}
.hn-contact:hover { background: rgba(255,255,255,.22); color:#fff; }

.hn-pulse {
  width: 8px; height: 8px;
  background: #43e07d;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(67,224,125,.5);
  animation: hnPulse 1.8s ease-in-out infinite;
}
@keyframes hnPulse {
  0%   { box-shadow: 0 0 0 0   rgba(67,224,125,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(67,224,125,0);  }
  100% { box-shadow: 0 0 0 0   rgba(67,224,125,0);  }
}

.hn-badge {
  background: #f57c00;
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
}

.hn-ghost {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  font-family: 'Cairo', sans-serif;
}
.hn-ghost:hover { background: rgba(255,255,255,.12); color:#fff; }

.hn-orange {
  padding: 9px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg,#f57c00,#ff9800);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(245,124,0,.4);
  transition: all .25s;
  font-family: 'Cairo', sans-serif;
}
.hn-orange:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,124,0,.55); color:#fff; }

.hb-container { position: relative; z-index: 5; }

.hb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - 90px);
  padding: 30px 0 70px;
}

.hb-text {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 50px;
  width: fit-content;
}

.hb-eye-dot {
  width: 7px; height: 7px;
  background: #43e07d;
  border-radius: 50%;
}

.hb-heading {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  min-height: 3.6rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.hb-heading::after {
  content: '|';
  animation: hbBlink .7s step-end infinite;
  color: rgba(255,255,255,.7);
  font-weight: 300;
}
@keyframes hbBlink { 0%,100%{opacity:1} 50%{opacity:0} }

.hb-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.85);
  line-height: 1.95;
  font-weight: 500;
  margin: 0;
}

.hb-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hb-btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: #fff;
  color: #1565c0;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  transition: transform .22s, box-shadow .22s;
  font-family: 'Cairo', sans-serif;
}
.hb-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.25); color:#1565c0; }

.hb-btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: hbShine 3s ease-in-out infinite;
}
@keyframes hbShine { 0%{left:-100%} 50%,100%{left:150%} }

.hb-btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all .22s;
  font-family: 'Cairo', sans-serif;
}
.hb-btn-ghost:hover { background: rgba(255,255,255,.12); color:#fff; transform: translateY(-2px); }

.hb-apps { display: flex; gap: 12px; flex-wrap: wrap; }

.hb-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 9px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
}
.hb-app:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.3); color:#fff; }
.hb-app > div { display: flex; flex-direction: column; }
.hb-app-s { font-size: .58rem; color: rgba(255,255,255,.7); font-weight: 500; }
.hb-app-b { font-size: .92rem; font-weight: 800; color: #fff; line-height: 1.2; }

.hb-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  width: fit-content;
}

.hb-trust-item { display: flex; flex-direction: column; align-items: center; }
.hb-trust-val  { font-size: 1.3rem; font-weight: 900; color: #fff; line-height: 1; }
.hb-trust-lbl  { font-size: .68rem; color: rgba(255,255,255,.72); font-weight: 500; margin-top: 3px; }
.hb-trust-sep  { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

.hb-phone-wrap {
  flex: 1;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.hb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  animation: hbRingPulse 4s ease-in-out infinite;
}
.hb-ring-1 { width:260px; height:260px; animation-delay:0s;   }
.hb-ring-2 { width:360px; height:360px; animation-delay:.8s;  }
.hb-ring-3 { width:460px; height:460px; animation-delay:1.6s; }
@keyframes hbRingPulse {
  0%,100% { transform:scale(1);    opacity:.15; }
  50%      { transform:scale(1.04); opacity:.06; }
}

.hb-phone {
  width: 250px;
  background: #0a0a0f;
  border-radius: 44px;
  padding: 14px 8px 10px;
  box-shadow:
    0 50px 100px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
  z-index: 4;
  animation: hbPhoneFloat 6s ease-in-out infinite;
}
@keyframes hbPhoneFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-14px) rotate(.5deg); }
  66%      { transform: translateY(-8px)  rotate(-.4deg); }
}

.hb-phone-camera {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  margin-bottom: 6px;
}
.hb-camera-dot {
  width: 10px; height: 10px;
  background: #1a1a2e;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}

.hb-screen {
  background: #f8fafc;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hb-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 4px;
  background: #fff;
}

.hb-app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.hb-sec {
  padding: 10px 12px;
  background: #fff;
  margin: 5px 5px 0;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}

.hb-sec-title {
  font-size: .67rem;
  font-weight: 800;
  color: #1a2340;
  margin-bottom: 7px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.hb-brands { display: flex; gap: 5px; }

.hb-brand {
  flex: 1;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hb-field-label {
  font-size: .56rem;
  color: #90a4ae;
  margin-bottom: 3px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.hb-field {
  background: #f1f5f9;
  border-radius: 7px;
  padding: 5px 9px;
  font-size: .58rem;
  color: #90a4ae;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  border: 1px solid #e8edf2;
}

.hb-swap-btn { display: flex; justify-content: center; margin: 6px 0; }

.hb-swap-icon {
  width: 26px; height: 26px;
  background: linear-gradient(135deg,#1e88e5,#42a5f5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  box-shadow: 0 4px 12px rgba(30,136,229,.4);
  animation: hbSwapSpin 4s ease-in-out infinite;
}
@keyframes hbSwapSpin {
  0%,100% { transform:rotate(0deg) scale(1);    }
  50%      { transform:rotate(180deg) scale(1.1); }
}

.hb-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding: 5px 8px;
  background: linear-gradient(135deg,#e3f2fd,#bbdefb);
  border-radius: 8px;
}
.hb-amount-label { font-size:.58rem; color:#1e88e5; font-weight:700; direction:rtl; font-family:'Cairo',sans-serif; }
.hb-amount-val   { font-size:.7rem; font-weight:900; color:#1565c0; font-family:monospace; direction:ltr; }

.hb-home-bar {
  width: 70px; height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  margin: 10px auto 4px;
}

.hb-chip {
  position: absolute;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .76rem;
  font-weight: 700;
  color: #1a2340;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  white-space: nowrap;
  z-index: 6;
  font-family: 'Cairo', sans-serif;
  animation: hbChipFloat 4s ease-in-out infinite;
}
.hb-chip-1 { top:10%;    right:-10px;  animation-delay:0s;   }
.hb-chip-2 { top:38%;    left:-20px;   animation-delay:.7s;  }
.hb-chip-3 { bottom:30%; right:-15px;  animation-delay:1.4s; }
.hb-chip-4 { bottom:12%; left:-10px;   animation-delay:2.1s; }
@keyframes hbChipFloat {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}

.hb-scroll-ind {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: .7;
}
.hb-scroll-ind span { font-size:.72rem; color:rgba(255,255,255,.8); font-weight:600; }
.hb-scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hb-scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  animation: hbScrollWheel 1.8s ease-in-out infinite;
}
@keyframes hbScrollWheel {
  0%   { transform:translateY(0);    opacity:1; }
  100% { transform:translateY(10px); opacity:0; }
}

@media (max-width: 767px) {
  .hb-nav-desktop { display: none !important; }
  .hb-row { flex-direction: column; min-height: auto; padding: 20px 0 50px; text-align: center; justify-content: center; align-items: center; }
  .hb-text { max-width: 100%; align-items: center; }
  .hb-heading { font-size: 2rem; min-height: 2.4rem; }
  .hb-cta, .hb-apps, .hb-trust { justify-content: center; }
  .hb-phone-wrap { display: none !important; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hb-heading { font-size: 2.2rem; }
  .hb-phone   { width: 210px; }
  .hb-chip    { display: none; }
  .hb-ring    { display: none; }
  .hb-phone-wrap { min-height: 460px; }
}


/* ============================================================
   2. SERVICES
   ============================================================ */

.srv-section {
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f4fd 50%, #f5f9ff 100%);
  padding: 80px 0 60px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}

.srv-blob {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,136,229,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; left: -100px;
  pointer-events: none;
}

.srv-container { position: relative; z-index: 2; }

.srv-badge {
  display: inline-block;
  background: rgba(30,136,229,0.10);
  color: #1e88e5;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(30,136,229,0.20);
  margin-bottom: 12px;
}

.srv-title { font-size: 2.2rem; font-weight: 900; color: #1a2340; margin-bottom: 10px; }
.srv-sub   { color: #607d8b; font-size: 1rem; font-weight: 500; }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto 50px;
}

.srv-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1565c0 0%, #1e88e5 60%, #42a5f5 100%);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 8px 30px rgba(30,136,229,0.25);
  cursor: pointer;
}

.srv-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(30,136,229,0.38);
  color: #fff;
  text-decoration: none;
}

.srv-card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.srv-card:hover .srv-card-shine { left: 150%; }

.srv-card-1 { background: linear-gradient(135deg, #1565c0, #1e88e5); }
.srv-card-2 { background: linear-gradient(135deg, #0d47a1, #1976d2); }
.srv-card-3 { background: linear-gradient(135deg, #1e88e5, #29b6f6); }
.srv-card-4 { background: linear-gradient(135deg, #1565c0, #42a5f5); }

.srv-icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  animation: srvRingPulse 3s ease-in-out infinite;
}
@keyframes srvRingPulse {
  0%,100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.12); opacity: 0.6; }
}

.srv-icon {
  font-size: 1.9rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}
.srv-card:hover .srv-icon { transform: scale(1.2) rotate(-5deg); }

.srv-card-content { flex: 1; text-align: right; }
.srv-card-title   { font-size: 1.05rem; font-weight: 900; color: #fff; margin: 0 0 5px; }
.srv-card-desc    { font-size: 0.8rem; color: rgba(255,255,255,0.80); font-weight: 500; margin: 0; line-height: 1.5; }

.srv-card-arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.srv-card:hover .srv-card-arrow { transform: translateX(-5px); color: #fff; }

.srv-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 30px;
  background: rgba(30,136,229,0.06);
  border: 1px solid rgba(30,136,229,0.12);
  border-radius: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.srv-stat       { display: flex; align-items: center; gap: 8px; }
.srv-stat-icon  { font-size: 1.1rem; }
.srv-stat-text  { font-size: 0.88rem; font-weight: 700; color: #1e88e5; }
.srv-stat-sep   { width: 1px; height: 28px; background: rgba(30,136,229,0.20); }

@media (max-width: 768px) {
  .srv-section { padding: 50px 0 40px; }
  .srv-title   { font-size: 1.6rem; }
  .srv-grid    { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
  .srv-card    { padding: 20px 18px; }
  .srv-icon-wrap { width: 52px; height: 52px; }
  .srv-icon      { font-size: 1.5rem; }
  .srv-stats     { gap: 16px; padding: 16px 20px; }
  .srv-stat-sep  { display: none; }
}

@media (min-width: 769px) and (max-width: 991px) {
  .srv-grid { max-width: 640px; gap: 16px; }
  .srv-card { padding: 22px 20px; }
}


/* ============================================================
   3. PAYME
   ============================================================ */

.payme-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f4fd 50%, #f5f9ff 100%);
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  overflow: hidden;
}

.payme-badge {
  display: inline-block;
  background: rgba(30,136,229,0.10);
  color: #1e88e5;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(30,136,229,0.20);
  margin-bottom: 14px;
}

.payme-title { font-size: 2.1rem; font-weight: 900; color: #1a2340; margin-bottom: 12px; }

#payme .section-title {
  background: transparent !important;
  color: #1a2340 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  font-size: 2.1rem;
  font-weight: 900;
}

.payme-sub          { color: #607d8b; font-size: 1rem; font-weight: 500; line-height: 1.85; margin-bottom: 8px; }
.payme-steps-label  { display: inline-block; color: #1a2340; font-size: 0.95rem; font-weight: 600; }
.payme-steps        { display: flex; flex-direction: column; gap: 14px; }

.payme-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 4px 20px rgba(30,136,229,0.07);
  border: 1px solid rgba(30,136,229,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.payme-step:hover { transform: translateX(-6px); box-shadow: 0 10px 30px rgba(30,136,229,0.14); }

.payme-step-number {
  min-width: 46px; height: 46px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 6px 16px rgba(30,136,229,0.28);
  flex-shrink: 0;
}

.payme-step-body  { text-align: right; }
.payme-step-label { font-size: 0.75rem; font-weight: 700; color: #1e88e5; letter-spacing: 0.4px; margin-bottom: 3px; }
.payme-step-title { font-size: 1rem; font-weight: 800; color: #1a2340; }
.payme-step-desc  { font-size: 0.85rem; color: #78909c; font-weight: 500; margin-top: 3px; }

.payme-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff !important;
  padding: 15px 42px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(245,124,0,0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  font-family: 'Cairo', sans-serif;
}
.payme-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(245,124,0,0.50); color: #fff !important; }

.payme-illustration {
  position: relative;
  width: 420px; height: 420px;
  background: linear-gradient(135deg, #e3f2fd 30%, #bbdefb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(30,136,229,0.12);
}

.payme-blob           { position: absolute; border-radius: 50%; opacity: 0.17; }
.payme-blob-1         { width: 80px; height: 80px; background: #1e88e5; top: -15px; left: -15px; }
.payme-blob-2         { width: 50px; height: 50px; background: #f57c00; bottom: 15px; right: -10px; }

.payme-invoice-stack  { position: relative; width: 260px; height: 310px; }

.payme-card {
  position: absolute;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}

.payme-card-1 { width: 195px; height: 145px; background: linear-gradient(135deg, #1565c0, #1e88e5); top: 15px; right: 5px; z-index: 3; animation: paymeFloat 4s ease-in-out infinite; animation-delay: 0s; }
.payme-card-2 { width: 175px; height: 125px; background: linear-gradient(135deg, #1e88e5, #42a5f5); top: 85px; left: 0; z-index: 2; animation: paymeFloat 4s ease-in-out infinite; animation-delay: 0.6s; }
.payme-card-3 { width: 155px; height: 115px; background: linear-gradient(135deg, #e3f2fd, #bbdefb); top: 158px; right: 18px; z-index: 1; animation: paymeFloat 4s ease-in-out infinite; animation-delay: 1.2s; }

@keyframes paymeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.payme-inv-badge      { display: inline-block; font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; color: #fff; width: fit-content; }
.payme-inv-paid       { background: #43a047; }
.payme-inv-pending    { background: #f57c00; }
.payme-inv-overdue    { background: #e53935; }
.payme-inv-title      { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.payme-inv-title-dark { color: #1e88e5; }
.payme-inv-line       { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.4); }
.payme-inv-line-dark  { background: rgba(30,136,229,0.22); }
.payme-inv-amount     { font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.88); margin-top: 4px; }

.payme-stats-bubble {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  padding: 12px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(30,136,229,0.15);
  white-space: nowrap;
}

.payme-stat         { display: flex; flex-direction: column; align-items: center; }
.payme-stat-value   { font-size: 1.1rem; font-weight: 900; color: #1e88e5; }
.payme-stat-label   { font-size: 0.72rem; color: #90a4ae; font-weight: 500; }
.payme-stat-divider { width: 1px; height: 36px; background: #e3f2fd; }

.payme-feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 20px;
  text-align: right;
  box-shadow: 0 4px 22px rgba(30,136,229,0.07);
  border: 1px solid rgba(30,136,229,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.payme-feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 38px rgba(30,136,229,0.14); }

.payme-feature-icon  { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px; }
.payme-icon-blue     { background: linear-gradient(135deg,#e3f2fd,#bbdefb); }
.payme-icon-orange   { background: linear-gradient(135deg,#fff3e0,#ffe0b2); }
.payme-icon-green    { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); }
.payme-icon-purple   { background: linear-gradient(135deg,#f3e5f5,#e1bee7); }
.payme-feature-title { font-size: 1rem; font-weight: 800; color: #1a2340; margin-bottom: 6px; }
.payme-feature-desc  { font-size: 0.84rem; color: #90a4ae; line-height: 1.75; font-weight: 500; }

@media (max-width: 991px) { .payme-illustration { width: 340px; height: 340px; } }

@media (max-width: 768px) {
  .payme-title, #payme .section-title { font-size: 1.6rem !important; }
  .payme-illustration  { width: 290px; height: 290px; }
  .payme-invoice-stack { width: 210px; height: 260px; }
  .payme-card-1        { width: 160px; height: 120px; }
  .payme-card-2        { width: 145px; height: 105px; }
  .payme-card-3        { width: 130px; height: 95px; }
  .payme-stats-bubble  { padding: 10px 16px; gap: 14px; bottom: -16px; }
  .payme-step:hover    { transform: none; }
}


/* ============================================================
   4. EXCHANGE
   ============================================================ */

.exchange-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f4fd 50%, #f5f9ff 100%);
  padding: 80px 0 60px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  overflow: hidden;
}

.exchange-badge {
  display: inline-block;
  background: rgba(30,136,229,0.10);
  color: #1e88e5;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(30,136,229,0.20);
  margin-bottom: 14px;
}

.exchange-title { font-size: 2.2rem; font-weight: 900; color: #1a2340; margin-bottom: 10px; }

#exchange .section-title {
  background: transparent !important;
  color: #1a2340 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  font-size: 2.2rem;
  font-weight: 900;
}

.exchange-sub { color: #607d8b; font-size: 1rem; font-weight: 500; line-height: 1.85; }

.exchange-phone {
  width: 160px; height: 300px;
  background: linear-gradient(160deg, #1e88e5 0%, #42a5f5 100%);
  border-radius: 32px;
  padding: 10px;
  position: relative;
  box-shadow: 0 30px 60px rgba(30,136,229,0.30), 0 0 0 6px rgba(30,136,229,0.15);
  animation: exchangePhoneFloat 4s ease-in-out infinite;
}

.exchange-phone-left  { --rot: -6deg; }
.exchange-phone-right { --rot:  6deg; }

@keyframes exchangePhoneFloat {
  0%,100% { transform: translateY(0) rotate(var(--rot,-6deg)); }
  50%      { transform: translateY(-12px) rotate(var(--rot,-6deg)); }
}

.exchange-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 8px;
  background: rgba(255,255,255,0.35);
  border-radius: 10px;
}

.exchange-phone-screen {
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exchange-screen-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  text-align: center;
}

.exchange-screen-logo    { font-size: 1.8rem; margin-bottom: 4px; }
.exchange-screen-label   { font-size: 0.65rem; color: #90a4ae; font-weight: 600; }

.exchange-screen-bar {
  width: 80px; height: 6px;
  background: #e3f2fd;
  border-radius: 10px;
  overflow: hidden;
}

.exchange-screen-bar-fill {
  height: 100%; width: 65%;
  background: linear-gradient(90deg, #1e88e5, #42a5f5);
  border-radius: 10px;
  animation: exchangeBarPulse 2s ease-in-out infinite;
}
@keyframes exchangeBarPulse { 0%,100%{width:40%} 50%{width:90%} }

.exchange-screen-amount      { font-size: 0.85rem; font-weight: 900; color: #1a2340; }
.exchange-screen-amount span { font-size: 0.65rem; color: #1e88e5; }
.exchange-screen-amount-out  { color: #43a047; }
.exchange-screen-arrow       { font-size: 1.2rem; color: #1e88e5; font-weight: 900; }

.exchange-screen-check {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #43a047, #66bb6a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; font-weight: 900;
  box-shadow: 0 4px 14px rgba(67,160,71,0.35);
}

.exchange-screen-success { font-size: 0.8rem; font-weight: 800; color: #1a2340; }
.exchange-screen-meta    { font-size: 0.65rem; color: #90a4ae; }
.exchange-screen-time    { font-size: 0.7rem; color: #1e88e5; font-weight: 700; background: rgba(30,136,229,0.08); padding: 3px 10px; border-radius: 20px; }

.exchange-wheel-wrapper {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}

.exchange-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(30,136,229,0.20);
  animation: exchangeRingSpin 30s linear infinite;
}
@keyframes exchangeRingSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.exchange-svg-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

.exchange-pulse-line {
  stroke-dasharray: 6 4;
  animation: exchangeLinePulse 2.5s linear infinite;
}
@keyframes exchangeLinePulse { from{stroke-dashoffset:20} to{stroke-dashoffset:0} }

.exchange-hub {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(30,136,229,0.10), 0 0 0 20px rgba(30,136,229,0.05), 0 10px 30px rgba(30,136,229,0.35);
  z-index: 5; position: relative;
  animation: exchangeHubPulse 3s ease-in-out infinite;
}
@keyframes exchangeHubPulse {
  0%,100% { box-shadow: 0 0 0 10px rgba(30,136,229,0.10), 0 0 0 20px rgba(30,136,229,0.05), 0 10px 30px rgba(30,136,229,0.35); }
  50%      { box-shadow: 0 0 0 14px rgba(30,136,229,0.14), 0 0 0 28px rgba(30,136,229,0.07), 0 10px 30px rgba(30,136,229,0.40); }
}

.exchange-hub-icon  { font-size: 1.4rem; color: #fff; line-height: 1; }
.exchange-hub-label { font-size: 0.6rem; color: rgba(255,255,255,0.85); font-weight: 700; }

.exchange-node {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  left: 50%; top: 50%;
  transform: rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle)));
  margin-left: -28px; margin-top: -28px;
  animation: exchangeNodePop 0.5s ease both;
  animation-delay: var(--delay);
  z-index: 4;
}
@keyframes exchangeNodePop {
  from { opacity: 0; transform: rotate(calc(-1 * var(--angle))) translateX(110px) rotate(var(--angle)) scale(0.5); }
  to   { opacity: 1; transform: rotate(calc(-1 * var(--angle))) translateX(130px) rotate(var(--angle)) scale(1); }
}

.exchange-node-bubble {
  width: 52px; height: 52px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(30,136,229,0.18);
  border: 2px solid rgba(30,136,229,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.exchange-node-bubble:hover { transform: scale(1.15); box-shadow: 0 10px 28px rgba(30,136,229,0.28); }

.exchange-node-name {
  font-size: 0.6rem; font-weight: 700; color: #1a2340;
  white-space: nowrap;
  background: #fff; padding: 2px 8px; border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.exchange-stats-bar {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-radius: 20px; padding: 28px 40px;
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(30,136,229,0.25);
}

.exchange-stat       { display: flex; flex-direction: column; align-items: center; color: #fff; }
.exchange-stat-value { font-size: 1.8rem; font-weight: 900; }
.exchange-stat-label { font-size: 0.82rem; opacity: 0.82; font-weight: 500; }
.exchange-stat-div   { width: 1px; height: 44px; background: rgba(255,255,255,0.22); }

.exchange-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff !important;
  padding: 15px 48px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(245,124,0,0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  font-family: 'Cairo', sans-serif;
}
.exchange-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(245,124,0,0.50); color: #fff !important; }

@media (max-width: 991px) {
  .exchange-phone { width: 130px; height: 250px; }
  .exchange-wheel-wrapper { width: 280px; height: 280px; }
  .exchange-node { transform: rotate(calc(-1 * var(--angle))) translateX(105px) rotate(var(--angle)); margin-left: -24px; margin-top: -24px; }
  .exchange-node-bubble { width: 44px; height: 44px; font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .exchange-section { padding: 50px 0 40px; }
  .exchange-title, #exchange .section-title { font-size: 1.6rem !important; }
  .exchange-phone { display: none; }
  .exchange-wheel-wrapper { width: 300px; height: 300px; }
  .exchange-stats-bar { gap: 20px; padding: 20px; }
  .exchange-stat-div { display: none; }
  .exchange-stat-value { font-size: 1.4rem; }
}


/* ============================================================
   5. CARDS (Gift Cards)
   ============================================================ */

.cards-section {
  background: linear-gradient(160deg,#1565c0 0%,#1e88e5 40%,#29b6f6 100%);
  padding: 80px 0 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  overflow: hidden;
  position: relative;
}

.cards-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff; font-size: .82rem; font-weight: 700;
  padding: 6px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.30);
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.cards-title { font-size:2.2rem; font-weight:900; color:#fff; margin-bottom:10px; }
.cards-sub   { color:rgba(255,255,255,.88); font-size:1rem; font-weight:500; line-height:1.85; }

.cards-brands-outer {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin-bottom: 40px; scrollbar-width: none; -ms-overflow-style: none;
}
.cards-brands-outer::-webkit-scrollbar { display:none; }

.cards-brands-row {
  display: flex; gap: 14px; flex-wrap: nowrap;
  width: max-content; margin: 0 auto; padding: 4px 8px 8px;
}

.cards-brand-card {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 8px; cursor: pointer; text-decoration: none;
}

.cards-brand-inner {
  width: 120px; height: 85px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 28px rgba(0,0,0,.20);
}
.cards-brand-inner:hover { transform: translateY(-6px) scale(1.05); box-shadow: 0 18px 40px rgba(0,0,0,.32); }

.cards-brand-amazon  { background:linear-gradient(135deg,#1a1a2e,#232f3e); }
.cards-brand-netflix { background:linear-gradient(135deg,#1a1a1a,#2d2d2d); }
.cards-brand-steam   { background:linear-gradient(135deg,#1b2838,#2a475e); }
.cards-brand-google  { background:linear-gradient(135deg,#4285f4,#34a853); }
.cards-brand-itunes  { background:linear-gradient(135deg,#fc3c44,#c62b38); }

.cards-brand-name { font-size:.78rem; font-weight:700; color:rgba(255,255,255,.85); white-space:nowrap; }

.cards-desc-block { text-align:center; max-width:680px; margin:0 auto 50px; }
.cards-desc-text  { color:rgba(255,255,255,.90); font-size:1rem; line-height:2; font-weight:500; }

.cards-showcase-wrapper {
  position: relative; width: 100%; min-height: 260px;
  align-items: flex-end; justify-content: center;
}

.cards-showcase {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative; z-index: 2; padding: 0 20px;
}

.cards-gift-card {
  width: 240px; height: 160px; border-radius: 18px; padding: 18px 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,.30), 0 8px 20px rgba(0,0,0,.20);
  transform: rotate(var(--rot,0deg)) translateY(0);
  animation: cardsGiftFloat 4s ease-in-out infinite;
  animation-delay: var(--delay,0s);
  position: relative; overflow: hidden; flex-shrink: 0;
  text-decoration: none; transition: transform .3s, box-shadow .3s; cursor: pointer;
}
.cards-gift-card:hover { transform: rotate(0deg) translateY(-14px) scale(1.04) !important; box-shadow: 0 30px 70px rgba(0,0,0,.38); z-index: 10; }

@keyframes cardsGiftFloat {
  0%,100% { transform:rotate(var(--rot,0deg)) translateY(0); }
  50%      { transform:rotate(var(--rot,0deg)) translateY(-10px); }
}

.cards-gift-amazon  { background:linear-gradient(145deg,#232f3e,#1a1a2e); margin-left:-24px; z-index:1; }
.cards-gift-steam   { background:linear-gradient(145deg,#1b2838,#2a475e); z-index:3; transform:rotate(0deg) translateY(-20px); }
.cards-gift-netflix { background:linear-gradient(145deg,#fff,#f5f5f5); margin-right:-24px; z-index:2; }

.cards-gift-top        { display:flex; justify-content:space-between; align-items:flex-start; }
.cards-gift-value      { font-size:1.5rem; font-weight:900; color:#fff; }
.cards-gift-netflix .cards-gift-value { color:#1a1a1a; }
.cards-gift-brand-name { font-size:.9rem; font-weight:900; color:rgba(255,255,255,.85); font-family:Arial,sans-serif; }
.cards-gift-logo       { position:absolute; bottom:14px; left:16px; opacity:.12; font-size:3.5rem; pointer-events:none; }
.cards-gift-footer     { display:flex; justify-content:space-between; align-items:center; }
.cards-gift-footer span:first-child { font-size:.7rem; color:rgba(255,255,255,.55); font-weight:500; }
.cards-gift-netflix .cards-gift-footer span:first-child { color:rgba(0,0,0,.45); }

.cards-gift-badge       { font-size:.62rem; font-weight:700; padding:3px 10px; border-radius:20px; background:rgba(255,153,0,.90); color:#fff; }
.cards-gift-badge-green { background:rgba(67,160,71,.90); }
.cards-gift-badge-red   { background:rgba(229,9,20,.90); }

.cards-gift-card::before {
  content:''; position:absolute; top:-50%; left:-50%;
  width:200%; height:200%;
  background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.06) 50%,transparent 60%);
  animation:cardsShimmer 4s ease-in-out infinite;
  animation-delay:var(--delay,0s); pointer-events:none;
}
@keyframes cardsShimmer {
  0%   { transform:translateX(-100%) rotate(15deg); }
  100% { transform:translateX(100%)  rotate(15deg); }
}

.cards-wave {
  position:absolute; bottom:0; left:0; right:0; height:60px;
  background:linear-gradient(180deg,transparent,rgba(21,101,192,.5)); z-index:1;
}

.cards-mobile-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory; gap: 14px;
  padding: 10px 20px 30px; scrollbar-width: none; -ms-overflow-style: none;
}
.cards-mobile-scroll::-webkit-scrollbar { display:none; }

.cards-mobile-card {
  flex: 0 0 72vw; max-width: 260px; min-width: 200px;
  height: 130px; border-radius: 18px; padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  scroll-snap-align: start;
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
  position: relative; overflow: hidden; flex-shrink: 0;
  text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.cards-mobile-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,.32); }

.cards-mobile-card::before {
  content:''; position:absolute; top:-50%; left:-50%;
  width:200%; height:200%;
  background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.07) 50%,transparent 60%);
  animation:cardsShimmer 3s ease-in-out infinite; pointer-events:none;
}

@media (max-width: 767px) {
  .cards-section     { padding: 50px 0 0; }
  .cards-title       { font-size: 1.5rem; }
  .cards-sub         { font-size: .9rem; }
  .cards-brand-inner { width: 95px; height: 72px; }
  .cards-brand-name  { font-size: .7rem; }
}

@media (max-width: 400px) {
  .cards-brand-inner { width: 80px; height: 62px; }
  .cards-mobile-card { flex: 0 0 82vw; height: 120px; }
}


/* ============================================================
   6. SMALL SERVICES (GIGS)
   ============================================================ */

.gigs-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f4fd 50%, #f5f9ff 100%);
  padding: 80px 0 60px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  overflow: hidden;
  position: relative;
}

.gigs-badge {
  display: inline-block;
  background: rgba(30,136,229,0.10);
  color: #1e88e5;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(30,136,229,0.20);
  margin-bottom: 14px;
}

.gigs-title { font-size: 2.2rem; font-weight: 900; color: #1a2340; margin-bottom: 10px; }
.gigs-sub   { color: #607d8b; font-size: 1rem; font-weight: 500; line-height: 1.85; max-width: 600px; margin: 0 auto; }

.gigs-illustration-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.gigs-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: gigsDotFloat 5s ease-in-out infinite;
}

.gigs-dot-1 { width:14px; height:14px; background:#1e88e5; top:10%;    right:10%; animation-delay:0s;   }
.gigs-dot-2 { width:10px; height:10px; background:#f57c00; top:25%;    left:8%;   animation-delay:0.8s; }
.gigs-dot-3 { width:18px; height:18px; background:#43a047; bottom:15%; right:12%; animation-delay:1.4s; }
.gigs-dot-4 { width:10px; height:10px; background:#ab47bc; bottom:20%; left:10%;  animation-delay:2s;   }

@keyframes gigsDotFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.gigs-illustration-box { position: relative; max-width: 600px; width: 100%; }

.gigs-illustration-img {
  width: 100%; max-width: 600px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(30,136,229,0.12));
}

.gigs-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a2340;
  box-shadow: 0 6px 20px rgba(30,136,229,0.18);
  border: 1px solid rgba(30,136,229,0.12);
  animation: gigsFloatBadge 4s ease-in-out infinite;
  white-space: nowrap;
}

.gigs-float-1 { top: 15%;    right: 2%; animation-delay: 0s;   }
.gigs-float-2 { top: 40%;    left: 2%;  animation-delay: 0.6s; }
.gigs-float-3 { bottom: 25%; right: 2%; animation-delay: 1.2s; }
.gigs-float-4 { bottom: 10%; left: 5%;  animation-delay: 1.8s; }

@keyframes gigsFloatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.gigs-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(30,136,229,0.08);
  border: 1px solid rgba(30,136,229,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.gigs-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(30,136,229,0.16); }

.gigs-card-featured {
  border: 2px solid #1e88e5;
  box-shadow: 0 10px 36px rgba(30,136,229,0.16);
}

.gigs-ribbon {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff;
  font-size: 0.68rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(245,124,0,0.35);
}

.gigs-card-img-wrapper { position: relative; overflow: hidden; height: 200px; }

.gigs-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gigs-card:hover .gigs-card-img { transform: scale(1.07); }

.gigs-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,101,192,0.55), transparent);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gigs-card:hover .gigs-card-overlay { opacity: 1; }

.gigs-card-category {
  font-size: 0.78rem; font-weight: 700; color: #fff;
  background: rgba(255,255,255,0.20);
  padding: 4px 12px; border-radius: 20px;
  backdrop-filter: blur(4px);
}

.gigs-card-body {
  padding: 20px 18px 22px;
  display: flex; flex-direction: column; flex: 1; gap: 10px;
}

.gigs-card-meta { display: flex; justify-content: space-between; align-items: center; }

.gigs-card-tag {
  font-size: 0.72rem; font-weight: 700; color: #607d8b;
  background: #f1f5f9; padding: 3px 10px; border-radius: 20px;
}

.gigs-tag-blue   { background: rgba(30,136,229,0.10); color: #1e88e5; }
.gigs-tag-purple { background: rgba(171,71,188,0.10); color: #ab47bc; }

.gigs-card-rating { font-size: 0.75rem; font-weight: 700; color: #f57c00; }
.gigs-card-title  { font-size: 1.05rem; font-weight: 800; color: #1a2340; margin: 0; }
.gigs-card-desc   { font-size: 0.85rem; color: #78909c; line-height: 1.7; font-weight: 500; margin: 0; flex: 1; }
.gigs-card-footer { margin-top: auto; padding-top: 10px; }

.gigs-cta-btn {
  display: block;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff !important;
  text-align: center;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(245,124,0,0.30);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  font-family: 'Cairo', sans-serif;
}
.gigs-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245,124,0,0.42); color: #fff !important; }

.gigs-stats-row {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-radius: 20px; padding: 28px 40px;
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap; margin-top: 50px;
  box-shadow: 0 12px 40px rgba(30,136,229,0.25);
}

.gigs-stat       { display: flex; flex-direction: column; align-items: center; color: #fff; }
.gigs-stat-value { font-size: 1.8rem; font-weight: 900; }
.gigs-stat-label { font-size: 0.82rem; opacity: 0.82; font-weight: 500; }
.gigs-stat-div   { width: 1px; height: 44px; background: rgba(255,255,255,0.22); }

@media (max-width: 991px) {
  .gigs-float-badge { display: none; }
  .gigs-stats-row   { gap: 20px; padding: 20px; }
}

@media (max-width: 768px) {
  .gigs-section    { padding: 50px 0 40px; }
  .gigs-title      { font-size: 1.6rem; }
  .gigs-stat-div   { display: none; }
  .gigs-stat-value { font-size: 1.4rem; }
  .gigs-card-img-wrapper { height: 160px; }
  .gigs-dot        { display: none; }
}


/* ============================================================
   7. FOOTER
   ============================================================ */

.ft-footer { direction: rtl; font-family: 'Cairo', sans-serif; position: relative; }

.ft-wave-wrap      { line-height: 0; background: #eef6ff; display: block; }
.ft-wave-wrap svg  { width: 100%; height: 80px; display: block; }

.ft-main {
  background: linear-gradient(160deg, #0d47a1 0%, #1565c0 35%, #1e88e5 70%, #1976d2 100%);
  position: relative; overflow: hidden; padding: 60px 0 0;
}

.ft-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: .4;
}

.ft-deco-img-wrap {
  position: absolute; bottom: 50px; left: -30px;
  z-index: 1; pointer-events: none; opacity: .18; display: block;
}
.ft-deco-img { height: 320px; width: auto; object-fit: contain; filter: grayscale(30%); }

.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px 40px;
  padding-bottom: 50px;
}

.ft-col { display: flex; flex-direction: column; gap: 16px; }

.ft-col-title {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 800; color: #fff;
}
.ft-col-title-line {
  display: inline-block; width: 4px; height: 18px;
  background: linear-gradient(180deg, #ff9800, #f57c00);
  border-radius: 4px; flex-shrink: 0;
}

.ft-logo-row  { display: flex; }
.ft-logo-img  { height: 52px; width: auto; max-width: 160px; object-fit: contain; }

.ft-brand-name    { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1.1; }
.ft-brand-tagline { font-size: .74rem; color: rgba(255,255,255,.60); font-weight: 600; margin-top: 3px; }

.ft-desc { font-size: .86rem; color: rgba(255,255,255,.75); line-height: 1.95; font-weight: 500; margin: 0; }

.ft-socials { display: flex; gap: 8px; flex-wrap: wrap; }

.ft-soc {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .95rem; text-decoration: none;
  transition: all .25s; backdrop-filter: blur(6px);
}
.ft-soc:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.2); color: #fff; }
.ft-soc svg, .ft-soc i { width:17px; height:17px; fill:#fff; color:#fff; }

.ft-ministry {
  display: flex; align-items: center; gap: 8px;
  font-size: .73rem; font-weight: 700; color: rgba(255,255,255,.68);
  padding: 7px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; width: fit-content;
}
.ft-ministry-dot {
  width: 7px; height: 7px; background: #43e07d;
  border-radius: 50%; flex-shrink: 0;
  animation: ftMinPulse 2s ease-in-out infinite;
}
@keyframes ftMinPulse {
  0%   { box-shadow: 0 0 0 0   rgba(67,224,125,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(67,224,125,0);  }
  100% { box-shadow: 0 0 0 0   rgba(67,224,125,0);  }
}

.ft-link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }

.ft-link-list li a {
  display: flex; align-items: center; gap: 7px;
  font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.72);
  text-decoration: none; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .22s;
}
.ft-link-list li:last-child a { border-bottom: none; }
.ft-link-list li a:hover { color: #fff; padding-right: 6px; }

.ft-link-arrow { color: #ff9800; font-size: 1rem; font-weight: 900; transition: transform .22s; flex-shrink: 0; }
.ft-link-list li a:hover .ft-link-arrow { transform: translateX(-3px); }

.ft-trust-items { display: flex; flex-direction: column; gap: 8px; }

.ft-trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px; backdrop-filter: blur(6px);
  transition: background .25s; text-decoration: none;
}
.ft-trust-item:hover { background: rgba(255,255,255,.13); }
.ft-trust-link       { cursor: pointer; }

.ft-trust-chevron { margin-right: auto; color: rgba(255,255,255,.4); font-size: .9rem; transition: transform .22s, color .22s; }
.ft-trust-link:hover .ft-trust-chevron { transform: translateX(-4px); color: #fff; }

.ft-trust-icon  { font-size: 1.1rem; flex-shrink: 0; }
.ft-trust-label { font-size: .66rem; color: rgba(255,255,255,.52); font-weight: 600; line-height: 1; }
.ft-trust-val   { font-size: .82rem; color: #fff; font-weight: 700; margin-top: 2px; }

.ft-bottom {
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px); padding: 14px 0;
}
.ft-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    background-color: #fff;
    direction: rtl;
}

.page-wrapper {
    margin: 0 auto;
    width: 100%;
}

.single-page-wrapper {
    margin: 0 auto;
    flex: 1 0 auto;
    width: 100%;
    background-color: #F1F2F2;
    padding: 35px 35px;
    justify-items: center;
}

body.layout-root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer,
.simple-footer {
    flex-shrink: 0;
}

/* FIX: typo corrected from .wihte-bg → .white-bg */
.white-bg {
    background-color: #fff;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.page-item:last-child .page-link {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
}

.ft-copy        { font-size: .75rem; color: rgba(255,255,255,.52); font-weight: 500; }
.ft-copy strong { color: rgba(255,255,255,.85); }
.ft-bottom-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.ft-badge  { font-size: .67rem; font-weight: 700; color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 4px 12px; border-radius: 50px; }
.ft-made   { font-size: .73rem; color: rgba(255,255,255,.42); font-weight: 600; }

@media (max-width: 1100px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .ft-deco-img-wrap { display: none; }
  .ft-col-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 20px; }
  .ft-col-brand .ft-logo-row          { flex: 0 0 auto; }
  .ft-col-brand > div:nth-child(2)    { flex: 1; min-width: 160px; }
  .ft-col-brand .ft-desc              { flex: 1 1 100%; }
  .ft-col-brand .ft-socials           { flex: 1 1 100%; }
  .ft-col-brand .ft-ministry          { flex: 1 1 100%; }
}

@media (max-width: 767px) {
  .ft-main          { padding: 32px 0 0; }
  .ft-wave-wrap svg { height: 48px; }
  .ft-deco-img-wrap { display: none; }
  .ft-grid          { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .ft-col           { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.10); align-items: flex-start; gap: 14px; }
  .ft-col:last-child { border-bottom: none; }
  .ft-col-brand     { align-items: flex-start; }
  .ft-logo-img      { height: 44px; }
  .ft-brand-name    { font-size: 1.25rem; }
  .ft-brand-tagline { font-size: .7rem; }
  .ft-desc          { font-size: .84rem; }
  .ft-ministry      { align-self: flex-start; }
  .ft-trust-items   { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .ft-trust-items .ft-trust-link { grid-column: 1 / -1; }
  .ft-trust-item    { padding: 10px 12px; }
  .ft-trust-chevron { display: none; }
  .ft-link-list     { flex-direction: row; flex-wrap: wrap; gap: 4px 0; }
  .ft-link-list li  { flex: 0 0 50%; }
  .ft-link-list li a { border-bottom: none; padding: 5px 0; font-size: .82rem; }
  .ft-link-list li a:hover { padding-right: 0; }
  .ft-bottom-inner  { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .ft-bottom-badges { justify-content: center; }
  .ft-bottom        { padding: 16px 0; }
}



.sub-header-section {
    background-size: 90% auto;
    background-position: top left;
    min-height: 60vh;
    position: relative;
    color: white;
}

.btn-white-sub {
    background: #2296f3;
    color: #ffffff;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    border: 0;
}

.btn-white-sub:hover {
    color: #fff;
    transform: translateX(-5px);
}

.dash-nav-row {
    display: flex;
    gap: 12px;
}

.dash-nav-link {
    text-decoration: none;
}

.dash-nav-rectangle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    min-width: 60px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dash-nav-text {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.dash-icon-link {
    width: 38px;
    height: 38px;
    transition: filter 0.3s ease;
}

.dash-nav-link.active .dash-nav-rectangle {
    background-color: var(--main-color);
}

.dash-nav-link.active .dash-nav-text {
    color: #fff;
}

.dash-nav-link.active .dash-icon-link {
    filter: brightness(0) invert(1);
}

.dash-nav-link:hover .dash-nav-rectangle {
    background-color: rgba(33, 150, 243, 0.1);
}
/* ===== MOBILE BAR / DRAWER - isolated classes ===== */

.zm-mbar{
  display:none;
  position:relative;
  z-index:30;
  padding:12px 14px 0;
}

.zm-mbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.zm-mbar__brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.zm-mbar__logo{
  max-width:120px;
  height:auto;
  display:block;
}

.zm-mbar__toggle{
  width:46px;
  height:46px;
  border:0;
  border-radius:14px;
  background:rgba(255,255,255,.14);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  cursor:pointer;
}

.zm-mbar__toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:99px;
  display:block;
}

.zm-drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:1998;
}

.zm-drawer{
  position:fixed;
  top:0;
  right:0;
  width:min(86vw, 340px);
  height:100vh;
  background:rgba(10,16,30,.98);
  color:#fff;
  transform:translateX(100%);
  transition:transform .28s ease;
  z-index:1999;
  box-shadow:-10px 0 30px rgba(0,0,0,.25);
  border-left:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
}

.zm-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.zm-drawer__brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.zm-drawer__logo{
  max-width:120px;
  height:auto;
  display:block;
}

.zm-drawer__close{
  border:0;
  background:transparent;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}

.zm-drawer__body{
  padding:12px 18px 22px;
}

.zm-drawer__link{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:1.03rem;
  font-weight:600;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.zm-drawer__link:hover{
  color:#ffb24d;
}

body.zm-drawer-open{
  overflow:hidden;
}

body.zm-drawer-open .zm-drawer-backdrop{
  opacity:1;
  visibility:visible;
}

body.zm-drawer-open .zm-drawer{
  transform:translateX(0);
}

@media (max-width: 991.98px){
  .zm-mbar{
    display:block;
  }

  .custom-navbar{
    display:none !important;
  }

  .hb-nav-desktop{
    display:none !important;
  }
}

@media (min-width: 992px){
  .zm-mbar,
  .zm-drawer,
  .zm-drawer-backdrop{
    display:none !important;
  }
}

@media (max-width: 400px) {
  .ft-brand-name  { font-size: 1.1rem; }
  .ft-desc        { font-size: .8rem; }
  .ft-logo-img    { height: 38px; }
  .ft-trust-items { grid-template-columns: 1fr; }
  .ft-trust-items .ft-trust-link { grid-column: 1; }
  .ft-link-list li { flex: 0 0 100%; }
}