/* ============================================================
   Design: Dark Luxury — Deep Purple & Charcoal
   Background: #0f0a1e | Accent: #7c3aed | Cards: #1a1230
   Typography: Cairo (headings) + IBM Plex Sans Arabic
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: #0f0a1e;
  color: #e2e8f0;
  font-family: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
  direction: rtl;
  min-height: 100vh;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,10,30,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  backdrop-filter: blur(8px);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #c4b5fd;
  white-space: nowrap;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 6px #a78bfa;
  flex-shrink: 0;
  display: inline-block;
}

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

.nav-links a {
  font-size: 13px;
  color: #c4b5fd;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663678452881/5A9vsDFRymU8ti8CCFg3su/hero-car-gtawxvdHRhbYeS8EcDERN4.webp');
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,10,30,0.96) 0%, rgba(15,10,30,0.85) 45%, rgba(15,10,30,0.3) 100%);
}

.hero-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, #0f0a1e 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  width: 100%;
  text-align: right;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid rgba(167,139,250,0.4);
  background: rgba(124,58,237,0.15);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip {
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.12);
  font-size: 12px;
  font-weight: 700;
  color: #c4b5fd;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  font-family: 'Cairo', sans-serif;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #a78bfa;
  font-family: 'Cairo', sans-serif;
  margin-bottom: 20px;
}

.hero-lead {
  max-width: 560px;
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 2;
  color: #c4b5fd;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 8px 28px rgba(124,58,237,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(124,58,237,0.65);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid rgba(167,139,250,0.4);
  background: rgba(124,58,237,0.1);
  color: #c4b5fd;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(167,139,250,0.7);
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.08);
  font-size: 13px;
  color: #c4b5fd;
  font-weight: 600;
}

.check { color: #7c3aed; }

/* ── ACCORDION CARDS ── */
.cards-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.1);
  font-size: 12px;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #f1f0ff;
  font-family: 'Cairo', sans-serif;
}

.cards-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accordion-card {
  background: linear-gradient(135deg, #1a1230 0%, #150d28 100%);
  border: 1px solid #2d1f4e;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.accordion-card.open {
  border-color: #7c3aed;
  box-shadow: 0 0 30px rgba(124,58,237,0.25), 0 8px 32px rgba(0,0,0,0.4);
}

.accordion-btn {
  width: 100%;
  text-align: right;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
}

.card-title-wrap { flex: 1; text-align: right; }

.card-eyebrow {
  font-size: 1rem;
  font-weight: 800;
  color: #f1f0ff;
  line-height: 1.4;
  font-family: 'Cairo', sans-serif;
}

.card-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #a78bfa;
  line-height: 1.4;
  font-family: 'Cairo', sans-serif;
  margin-top: 4px;
}

.toggle-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #4c1d95;
  background: rgba(124,58,237,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.accordion-card.open .toggle-btn {
  background: #7c3aed;
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(124,58,237,0.25);
}

.accordion-body p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 2;
  color: #c4b5fd;
}

/* ── SPLIT SECTION ── */
.split-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.15fr 0.85fr;
}

.split-card {
  background: linear-gradient(135deg, #1a1230 0%, #150d28 100%);
  border: 1px solid #2d1f4e;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.split-card.open {
  border-color: #7c3aed;
  box-shadow: 0 0 30px rgba(124,58,237,0.2), 0 8px 32px rgba(0,0,0,0.4);
}

.split-header {
  width: 100%;
  text-align: right;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.split-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.1);
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
}

.desktop-only {
  display: inline-flex;
  margin: 16px 24px 0;
}

.mobile-only { display: none; }

.split-body {
  padding: 0 24px 22px;
  border-top: 1px solid rgba(124,58,237,0.2);
}

.split-body h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f1f0ff;
  font-family: 'Cairo', sans-serif;
  margin: 16px 0 10px;
}

.split-body p {
  font-size: 14px;
  line-height: 2;
  color: #c4b5fd;
}

.info-box {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.06);
  overflow: hidden;
}

.info-row {
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 2;
  color: #a78bfa;
  border-bottom: 1px solid rgba(124,58,237,0.15);
}

.info-row2 {
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 2;
  color: #9ca3af;
}

/* Contact list */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.06);
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, border-color 0.2s;
}

.contact-row:hover {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.4);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-info { flex: 1; text-align: right; }

.contact-label {
  font-size: 14px;
  font-weight: 700;
  color: #f1f0ff;
  font-family: 'Cairo', sans-serif;
}

.contact-arrow {
  color: #7c3aed;
  font-size: 16px;
  font-weight: 700;
}

/* ── FOOTER ── */
.footer {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 32px 32px 48px;
  border-top: 1px solid rgba(124,58,237,0.15);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
  flex-shrink: 0;
}

.footer-logo span {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #f1f0ff;
  line-height: 1.4;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.9;
  color: #6b7280;
  margin: 0 0 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #c4b5fd;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
  border-bottom: 1px solid rgba(124,58,237,0.1);
  transition: color 0.2s;
}

.footer-nav a:last-child { border-bottom: none; }
.footer-nav a:hover { color: #a78bfa; }

.footer-nav a::before {
  content: '←';
  color: #7c3aed;
  font-size: 14px;
}

.footer-copy {
  font-size: 11px;
  color: #4b5563;
  margin-top: 16px;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #1a1230, #150d28);
  border-top: 1px solid rgba(124,58,237,0.3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(124,58,237,0.2);
}

.cookie-banner span {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.7;
  flex: 1;
}

.cookie-banner a {
  color: #a78bfa;
  text-decoration: underline;
}

.cookie-banner button {
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
}

/* ── POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.popup-box {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #1a1230, #150d28);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 36px;
  box-shadow: 0 -8px 40px rgba(124,58,237,0.3);
  text-align: center;
}

.popup-handle {
  width: 40px;
  height: 4px;
  background: rgba(124,58,237,0.4);
  border-radius: 999px;
  margin: 0 auto 20px;
}

.popup-title {
  font-size: 12px;
  color: #a78bfa;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Cairo', sans-serif;
}

.popup-value {
  font-size: 20px;
  font-weight: 800;
  color: #f1f0ff;
  font-family: 'Cairo', sans-serif;
  direction: ltr;
  margin-bottom: 20px;
  word-break: break-all;
}

.popup-close {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

/* ── UTILITY ── */
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .navbar { padding: 12px 16px; }
  .nav-badge { font-size: 11px; padding: 6px 12px; }
  .nav-links { display: none; }

  .hero { min-height: auto; }
  .hero-bg { background-position: center center; }
  .hero-overlay { background: rgba(15,10,30,0.88); }
  .hero-content { padding: 40px 16px 48px; text-align: center; }
  .chips { justify-content: center; }
  .cta-row { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }
  .mini-points { justify-content: center; }

  .cards-section { padding: 32px 16px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-icon { width: 36px; height: 36px; font-size: 16px; }
  .card-eyebrow { font-size: 0.85rem; }
  .card-subtitle { font-size: 0.78rem; }

  .split-section {
    padding: 32px 16px 0;
    grid-template-columns: 1fr;
  }
  .desktop-only { display: none; }
  .mobile-only { display: flex; }
  .split-body { border-top: 1px solid rgba(124,58,237,0.2); }
  .split-body.hidden { display: none !important; }

  .footer { padding: 32px 16px 48px; }
}
