/* ═══════════════════════════════════════════
   ريف فاليو بزنس — صفحة الموقع الرسمية
   تصميم احترافي مميز
═══════════════════════════════════════════ */

:root {
  /* Brand Palette — مأخوذ من شعار ريف فاليو */
  --navy: #5B2C91;          /* البنفسجي الملكي للبراند */
  --navy-deep: #3D1A66;     /* بنفسجي أعمق */
  --navy-soft: #7A4DAE;     /* بنفسجي ناعم */
  --coral: #B89A5C;         /* الذهبي البرونزي للبراند */
  --coral-deep: #97804A;    /* ذهبي أعمق */
  --gold: #C9AC73;          /* ذهبي فاتح */
  --gold-soft: #E8D9B5;     /* ذهبي ناعم جداً */
  --cream: #FAF7F2;         /* بيج كريم */
  --cream-warm: #FFF8EC;    /* كريم دافئ */
  --white: #FFFFFF;
  --text: #2A2A2A;
  --text-muted: #5A5462;
  --text-light: #9991A0;
  --border: #E8E0D2;
  --shadow-sm: 0 2px 8px rgba(91, 44, 145, 0.06);
  --shadow-md: 0 8px 24px rgba(91, 44, 145, 0.10);
  --shadow-lg: 0 20px 50px rgba(91, 44, 145, 0.15);
  --shadow-xl: 0 30px 80px rgba(91, 44, 145, 0.20);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
body.lang-ar { direction: rtl; }
body.lang-en { direction: ltr; }

::selection { background: var(--coral); color: white; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 64px;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}
.logo:hover .logo-img { transform: scale(1.04); }
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
}
.nav-links {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--coral-deep);
  background: var(--gold-soft);
}
.nav-cta {
  background: var(--navy);
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.menu-toggle {
  display: none;
  background: var(--gold-soft);
  border: none;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.menu-toggle:hover { background: var(--gold); color: white; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav-actions { gap: 0.5rem; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    text-align: right;
    width: 100%;
    font-size: 1rem;
  }
  .nav-links.open .mobile-cta {
    background: var(--coral);
    color: white;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 700;
  }
  .nav-links.open .mobile-cta:hover { background: var(--coral-deep); color: white; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 98, 77, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.hero h1 {
  font-size: clamp(1.9rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero h1 .accent {
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0; right: 0;
  height: 12px;
  background: var(--gold-soft);
  z-index: -1;
  opacity: 0.6;
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 8px 20px rgba(232, 98, 77, 0.35);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 98, 77, 0.45);
}
.btn-secondary {
  background: white;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.trust-item .check {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Hero Right side — Visual */
.hero-visual {
  position: relative;
  height: 540px;
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero-card.card-1 {
  top: 0; right: 0;
  width: 280px;
  animation-delay: 0s;
}
.hero-card.card-2 {
  top: 200px; left: 0;
  width: 260px;
  animation-delay: 1s;
}
.hero-card.card-3 {
  bottom: 0; right: 80px;
  width: 300px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.hero-card .meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
.hero-card .progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.hero-card .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  border-radius: 3px;
}
.hero-card .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-card .label {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.hero-card .icon-circle {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .hero-card,
  .hero-card.card-1,
  .hero-card.card-2,
  .hero-card.card-3 {
    position: static;
    width: 100%;
    transform: none;
    animation: none;
  }
}
@media (max-width: 700px) {
  .hero-visual { display: none; }
  .hero { padding: 7rem 1.2rem 3rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero p.lead { font-size: 1rem; }
  .container,
  .section-inner { padding-left: 1rem; padding-right: 1rem; }
  section { padding: 4rem 1rem; }
  .hero-trust { gap: 0.8rem; }
  .trust-item { font-size: 0.85rem; }
  .nav-inner { padding: 0 1rem; gap: 0.5rem; }
  .logo-img { height: 52px; }
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */

.stats-bar {
  background: var(--navy);
  color: white;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232, 98, 77, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(212, 165, 116, 0.12) 0%, transparent 40%);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, white 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════
   COMMON SECTION
═══════════════════════════════════════════ */

section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--coral-deep);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(184, 154, 92, 0.35);
  letter-spacing: 0.02em;
}
.section-header h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */

.problem {
  background: var(--white);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.problem-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem;
  border-right: 4px solid var(--coral);
  transition: transform 0.3s;
}
.problem-card:hover { transform: translateY(-6px); }
.problem-card .pain-icon {
  width: 56px; height: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.problem-card h4 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PROGRAMS (3 categories)
═══════════════════════════════════════════ */

.programs {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.program-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.program-card:hover {
  transform: translateY(-8px);
  border-color: var(--coral);
  box-shadow: var(--shadow-xl);
}
.program-card .step {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--cream-warm);
  line-height: 1;
}
.program-card .pic {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--coral) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.program-card h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.program-card .program-tagline {
  color: var(--coral);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.program-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
.program-card .program-features {
  list-style: none;
  position: relative;
  z-index: 1;
}
.program-card .program-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font-size: 0.95rem;
}
.program-card .program-features li:last-child { border: 0; }
.program-card .program-features li::before {
  content: '✓';
  color: var(--coral);
  font-weight: bold;
}

@media (max-width: 1024px) { .programs-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   WHY US (4 pillars)
═══════════════════════════════════════════ */

.why-us {
  background: white;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.why-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: 20px;
  transition: all 0.3s;
}
.why-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
}
.why-card .pic {
  width: 60px; height: 60px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  border: 2px solid var(--coral);
}
.why-card h4 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* Why-Us 6 tiles grid */
.why-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-tile {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.why-tile:hover {
  background: white;
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-tile-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.why-tile-icon.ic-green { background: #DCFCE7; }
.why-tile-icon.ic-yellow { background: #FEF3C7; }
.why-tile-icon.ic-coral { background: #FFE4DC; }
.why-tile-icon.ic-gold { background: var(--gold-soft); }
.why-tile h4 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 800;
}
.why-tile p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 1024px) { .why-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid-6 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   INTERNATIONAL INVESTORS SECTION
═══════════════════════════════════════════ */
.intl-investors {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}
.intl-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intl-text .section-tag { background: var(--gold-soft); color: var(--coral-deep); border: 1px solid rgba(184, 154, 92, 0.3); }
.intl-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 1rem 0;
}
.intl-text .lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.8;
}
.intl-benefits {
  list-style: none;
  margin-bottom: 2rem;
}
.intl-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.intl-benefits li:last-child { border: 0; }
.intl-benefits .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral-deep);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 8px 20px rgba(199, 82, 43, 0.3);
}
.btn-coral:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(199, 82, 43, 0.45);
}

/* Visual side */
.intl-visual { display: flex; justify-content: center; }
.intl-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border-top: 6px solid var(--coral);
  max-width: 460px;
  width: 100%;
  position: relative;
}
.intl-flag {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-family: 'Inter', 'Tajawal', sans-serif;
  line-height: 1;
}
.intl-card h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.intl-divider {
  width: 60px;
  height: 3px;
  background: var(--coral);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.intl-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.intl-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.intl-stat {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.2rem 0.8rem;
}
.intl-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.intl-stat .lab {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .intl-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ═══════════════════════════════════════════
   PROCESS (4 steps)
═══════════════════════════════════════════ */

.process {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
}
.process .section-header h2 { color: white; }
.process .section-header p { color: rgba(255, 255, 255, 0.7); }
.process .section-tag { background: rgba(255, 255, 255, 0.1); color: var(--gold-soft); border: 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2rem;
  text-align: right;
  transition: all 0.3s;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--coral);
}
.process-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}
.process-step h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PACKAGES (9 packages organized)
═══════════════════════════════════════════ */

.packages {
  background: var(--cream-warm);
}
.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: white;
  border: 2px solid var(--border);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  font-family: inherit;
}
.tab-btn:hover { border-color: var(--coral); color: var(--coral); }
.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.package-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.package-card.featured {
  border-color: var(--coral);
  background: linear-gradient(180deg, var(--cream-warm) 0%, white 50%);
  position: relative;
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.package-card.featured::before {
  content: '⭐ الأكثر طلباً';
  position: absolute;
  top: -14px; right: 50%;
  transform: translateX(50%);
  background: var(--coral);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.package-card h4 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.package-card .pkg-tagline {
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
}
.package-card .pkg-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 0;
}
.package-card .pkg-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.package-card .pkg-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
  color: var(--text);
}
.package-card .pkg-features li:last-child { border: 0; }
.package-card .pkg-features li::before {
  content: '✓ ';
  color: var(--coral);
  font-weight: bold;
}
.package-card .pkg-features li.sub {
  padding-right: 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  border: 0;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.package-card .pkg-features li.sub::before { content: '— '; }
.package-card .pkg-cta {
  display: block;
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 0.85rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
  margin-top: auto;
}
.package-card .pkg-cta:hover { background: var(--coral); }
.package-card.featured .pkg-cta { background: var(--coral); }
.package-card.featured .pkg-cta:hover { background: var(--coral-deep); }

@media (max-width: 1024px) { .packages-grid { grid-template-columns: 1fr; } .package-card.featured { transform: none; } }

/* ═══════════════════════════════════════════
   AUDIENCE (Who we serve)
═══════════════════════════════════════════ */

.audience {
  background: white;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.audience-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--cream);
  border-radius: 18px;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.audience-card:hover {
  background: white;
  border-color: var(--coral);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.audience-card .audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.audience-card h5 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.audience-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 1024px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .audience-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */

.faq {
  background: var(--cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--coral); }
.faq-q {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--coral);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

/* ═══════════════════════════════════════════
   FINAL CTA + CONTACT FORM
═══════════════════════════════════════════ */

.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232, 98, 77, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.12) 0%, transparent 50%);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.contact-text .section-tag { background: rgba(255, 255, 255, 0.1); color: var(--gold-soft); }
.contact-text h2 {
  color: white;
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.15;
}
.contact-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-perk {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.contact-perk-icon {
  width: 36px; height: 36px;
  background: rgba(232, 98, 77, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-soft);
}
.contact-direct {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-direct a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.contact-direct a:hover { color: var(--coral); }
.contact-direct .ic {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Form */
.contact-form {
  background: white;
  color: var(--text);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.contact-form h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form .form-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.form-group label .req { color: var(--coral); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--text);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: white;
  box-shadow: 0 0 0 4px rgba(232, 98, 77, 0.1);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--coral);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(232, 98, 77, 0.4);
}
.form-submit:disabled { opacity: 0.7; cursor: wait; }
.form-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 0.8rem;
}
.form-success, .form-error {
  display: none;
  padding: 1.2rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.form-success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}
.form-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}
.form-success.show, .form-error.show { display: block; }

@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 1.5rem;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}
.footer-col h5 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   WHATSAPP STICKY BUTTON
═══════════════════════════════════════════ */

.wa-btn {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  width: 64px; height: 64px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.wa-btn:hover { transform: scale(1.08); background: #1FBA5A; }
@keyframes pulse-wa {
  0% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ═══════════════════════════════════════════
   LANGUAGE TOGGLE
═══════════════════════════════════════════ */
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.lang-btn {
  background: white;
  border: 2px solid var(--border);
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.lang-btn:hover { border-color: var(--navy); background: var(--navy); color: white; }

/* Mini brand tags */
.mini-tag { padding: 0.25rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 700; color: white; }
.tag-purple { background: var(--navy); }
.tag-gold { background: var(--coral); }

/* ═══════════════════════════════════════════
   LTR ADJUSTMENTS (English mode)
═══════════════════════════════════════════ */
body.lang-en { font-family: 'Tajawal', 'Inter', -apple-system, sans-serif; }
body.lang-en .hero h1,
body.lang-en h1, body.lang-en h2, body.lang-en h3, body.lang-en h4, body.lang-en h5 {
  letter-spacing: -0.01em;
}
body.lang-en .wa-btn { left: auto; right: 1.5rem; }
body.lang-en .problem-card { border-right: 0; border-left: 4px solid var(--coral); }
body.lang-en .package-card .pkg-features li.sub { padding-right: 0; padding-left: 1rem; }
body.lang-en .package-card .pkg-features li.sub::before { content: '— '; }
body.lang-en .package-card .pkg-features li::before,
body.lang-en .pricing-card .features li::before { margin-left: 0.4rem; margin-right: 0; }
body.lang-en .program-card .program-features li::before { margin-left: 0.4rem; margin-right: 0; }
body.lang-en .nav-cta::after,
body.lang-en .btn-primary::after { content: ''; }
body.lang-en input[dir="ltr"] { text-align: left !important; }
body.lang-en .form-success,
body.lang-en .form-error { text-align: left; }

/* Arabic-only RTL */
body.lang-ar input[dir="ltr"] { text-align: right; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
