/* ============================================
   SAKALLAH WEBSITE - GLOBAL STYLESHEET
   محمد ساق الله - موقع احترافي
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ── Variables ── */
:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --primary-light: #38BDF8;
  --primary-glow: rgba(14, 165, 233, 0.25);
  --primary-glow-strong: rgba(14, 165, 233, 0.5);
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.25);
  --success: #10B981;
  --danger: #EF4444;
  --purple: #8B5CF6;

  --bg: #050810;
  --bg-2: #090D1A;
  --bg-3: #0D1224;
  --bg-4: #111828;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);

  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-faded: #64748B;
  --text-dark: #334155;

  --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #8B5CF6 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --gradient-dark: linear-gradient(180deg, #090D1A 0%, #050810 100%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
  --shadow-primary: 0 4px 24px rgba(14, 165, 233, 0.25);
  --shadow-accent: 0 4px 24px rgba(245, 158, 11, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 75px;
  --whatsapp: #25D366;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cairo';
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

::selection { background: var(--primary-glow-strong); color: var(--text); }

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Cairo', sans-serif; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Tajawal', sans-serif; line-height: 1.3; font-weight: 800; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 0 30px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--primary-glow-strong);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid rgba(14, 165, 233, 0.4);
}
.btn-outline:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 0 20px var(--primary-glow);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-title {
  font-size: 0.7rem;
  color: var(--text-faded);
  font-weight: 500;
}

.nav-links {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 4px; */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 20px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface-2);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(9, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-dropdown-item:hover {
  background: var(--surface-hover);
  color: var(--primary-light);
}

.nav-dropdown-item .icon {
  width: 32px;
  height: 32px;
  background: var(--primary-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 0 20px var(--primary-glow);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--primary-glow-strong);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Shared ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  overflow: hidden;
  background: var(--bg);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,165,233,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── Sections ── */
section {
  padding: 90px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--primary-glow);
}

.card:hover::before {
  opacity: 0.03;
}

/* ── Glass Card ── */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

/* ── Service Icon ── */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-blue { background: var(--primary-glow); color: var(--primary-light); }
.icon-amber { background: var(--accent-glow); color: var(--accent); }
.icon-purple { background: rgba(139, 92, 246, 0.2); color: #A78BFA; }
.icon-green { background: rgba(16, 185, 129, 0.2); color: #34D399; }
.icon-red { background: rgba(239, 68, 68, 0.2); color: #F87171; }
.icon-pink { background: rgba(236, 72, 153, 0.2); color: #F472B6; }

/* ── Stats ── */
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: 'Tajawal', sans-serif;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Pricing Cards ── */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 60px var(--primary-glow), 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(1.02);
  background: linear-gradient(180deg, rgba(14,165,233,0.06) 0%, var(--surface) 100%);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--primary-glow);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Tajawal', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-currency { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.pricing-period { font-size: 0.85rem; color: var(--text-faded); }

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-feature .check {
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-feature .x-mark {
  width: 22px;
  height: 22px;
  background: rgba(100,116,139,0.1);
  color: var(--text-faded);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Process Steps ── */
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateX(-4px);
  box-shadow: var(--shadow-primary);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  font-family: 'Tajawal', sans-serif;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--primary-glow);
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(14,165,233,0.25); }

.faq-question {
  width: 100%;
  background: var(--surface);
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  text-align: right;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { background: var(--surface-2); }
.faq-question.active { color: var(--primary-light); background: var(--surface-2); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.7rem;
  transition: var(--transition);
}

.faq-question.active .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; }

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 20px;
  border-top: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-faded); }

/* ── CTA Section ── */
.cta-section {
  padding: 90px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  background: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(139,92,246,0.08) 100%);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(14,165,233,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-tooltip {
  background: rgba(9, 13, 26, 0.95);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8), 0 0 60px rgba(37, 211, 102, 0.3); }
}

/* ── Footer ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-logo-section .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-brand {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--primary-light); transform: translateX(-4px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--text-faded);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { color: var(--text-faded); transition: var(--transition); }
.footer-bottom-link:hover { color: var(--primary); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0;
}

/* ── Badge & Tag ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

.tag-blue { background: var(--primary-glow); color: var(--primary-light); border: 1px solid rgba(14,165,233,0.25); }
.tag-amber { background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(245,158,11,0.25); }
.tag-green { background: rgba(16,185,129,0.15); color: #34D399; border: 1px solid rgba(16,185,129,0.25); }
.tag-purple { background: rgba(139,92,246,0.15); color: #A78BFA; border: 1px solid rgba(139,92,246,0.25); }

/* ── Grid Helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Highlight Box ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(139,92,246,0.08) 100%);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* ── Contact Form ── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: 'Cairo', sans-serif;
  outline: none;
  transition: var(--transition);
  direction: rtl;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  background: var(--surface-2);
}

.form-control::placeholder { color: var(--text-faded); }
textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control { cursor: pointer; appearance: none; }

/* ── Loading ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: loadBar 1.5s ease-in-out forwards;
}

@keyframes loadBar {
  from { width: 0; }
  to { width: 100%; }
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 65px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    background: rgba(5, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
    padding: 40px;
  }

  .nav-link { font-size: 1.2rem; padding: 12px 24px; width: 100%; text-align: center; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: var(--surface); width: 100%; }

  /* CTA button on mobile — compact, doesn't inherit nav-link sizing */
  .nav-cta {
    width: auto !important;
    max-width: 220px;
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
    justify-content: center;
    margin-top: 8px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .cta-box { padding: 40px 24px; }

  section { padding: 60px 0; }

  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  .whatsapp-float { left: 16px; bottom: 20px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .btn-lg { padding: 15px 28px; font-size: 0.95rem; }
}

/* ── Gradient Text ── */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow Orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.orb-primary { background: rgba(14, 165, 233, 0.15); }
.orb-purple { background: rgba(139, 92, 246, 0.1); }
.orb-accent { background: rgba(245, 158, 11, 0.1); }

/* ── Decorative ── */
.dots-pattern {
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* ── Sticky CTA Bar ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 998;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .whatsapp-float { bottom: 80px; }
}

/* ── Hero specific ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===== SERVICE PAGES VISUAL ELEMENTS ===== */

/* WordPress Dashboard Showcase */
.wp-showcase { position: relative; }
.wp-window { background: #1a1a2e; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05); }
.wp-toolbar { background: #2d2d2d; padding: 10px 14px; display: flex; gap: 6px; }
.wp-toolbar span { width: 12px; height: 12px; border-radius: 50%; }
.wp-toolbar span:nth-child(1) { background: #ff5f57; }
.wp-toolbar span:nth-child(2) { background: #ffbd2e; }
.wp-toolbar span:nth-child(3) { background: #28c940; }
.wp-dashboard { display: flex; }
.wp-sidebar { background: #191e38; padding: 14px 10px; display: flex; flex-direction: column; gap: 10px; }
.wp-menu-item { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; cursor: pointer; transition: all 0.3s; }
.wp-menu-item.active, .wp-menu-item:hover { background: var(--primary); color: #fff; }
.wp-content-area { flex: 1; padding: 14px; }
.wp-header-bar { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 12px; font-family: var(--font-heading); font-weight: 700; }
.wp-stats-row { display: flex; gap: 8px; margin-bottom: 12px; }
.wp-stat-card { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 8px; display: flex; align-items: center; gap: 8px; flex: 1; }
.wp-stat-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.wp-blue { background: rgba(14,165,233,0.2); color: var(--primary); }
.wp-green { background: rgba(16,185,129,0.2); color: #10b981; }
.wp-stat-num { color: #fff; font-size: 0.8rem; font-weight: 700; }
.wp-stat-label { color: rgba(255,255,255,0.4); font-size: 0.65rem; }
.wp-chart-area { display: flex; align-items: flex-end; gap: 4px; height: 60px; padding: 4px; background: rgba(255,255,255,0.03); border-radius: 6px; }
.wp-bar { flex: 1; background: linear-gradient(180deg, var(--primary), rgba(14,165,233,0.3)); border-radius: 3px 3px 0 0; animation: barGrow 1s ease forwards; }
@keyframes barGrow { from { height: 0 !important; } }
.wp-badge-floating { position: absolute; bottom: -12px; right: 20px; background: var(--primary); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; box-shadow: 0 4px 20px rgba(14,165,233,0.4); }

/* SEO SERP Showcase */
.seo-showcase { padding: 10px; }
.serp-result { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px 14px; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; position: relative; overflow: hidden; transition: all 0.3s; }
.serp-result.rank-1 { border-color: rgba(14,165,233,0.3); background: rgba(14,165,233,0.05); }
.serp-result.rank-1:hover { border-color: var(--primary); }
.serp-rank { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800; flex-shrink: 0; }
.serp-result.rank-2 .serp-rank { background: rgba(255,255,255,0.1); }
.serp-result.rank-3 .serp-rank { background: rgba(255,255,255,0.06); }
.serp-url { color: var(--primary); font-size: 0.7rem; margin-bottom: 2px; }
.serp-title { color: #fff; font-size: 0.82rem; font-weight: 600; margin-bottom: 3px; }
.serp-desc { color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.serp-badge { position: absolute; left: 10px; top: 10px; background: rgba(16,185,129,0.15); color: #10b981; padding: 2px 8px; border-radius: 10px; font-size: 0.65rem; white-space: nowrap; }
.seo-metrics { display: flex; gap: 10px; margin-top: 12px; }
.metric { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 8px 12px; font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.metric-up { color: #10b981; font-weight: 700; margin-left: 4px; }

/* Marketing Social Showcase */
.marketing-showcase { display: flex; flex-direction: column; gap: 10px; }
.social-platform { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px 16px; transition: all 0.3s; }
.social-platform.instagram { border-color: rgba(225,48,108,0.2); }
.social-platform.snapchat { border-color: rgba(255,252,0,0.15); }
.social-platform.twitter { border-color: rgba(29,161,242,0.2); }
.platform-header { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.platform-stats { display: flex; gap: 16px; }
.platform-stats div { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.up-arrow { color: #10b981; font-weight: 700; }
.funnel-visual { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: rgba(255,255,255,0.03); border-radius: 12px; }
.funnel-stage { background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.2); padding: 6px 12px; border-radius: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.funnel-arrow { color: var(--primary); font-weight: 700; }

/* Ads Dashboard Showcase */
.ads-showcase { }
.ads-dashboard { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; }
.ads-header { color: rgba(255,255,255,0.8); font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; font-family: var(--font-heading); }
.ads-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.ads-kpi { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 12px; }
.ads-kpi.good { border: 1px solid rgba(16,185,129,0.2); }
.kpi-label { color: rgba(255,255,255,0.4); font-size: 0.65rem; margin-bottom: 4px; }
.kpi-value { color: #fff; font-size: 1rem; font-weight: 800; font-family: var(--font-heading); }
.kpi-change { color: #10b981; font-size: 0.7rem; font-weight: 600; margin-top: 2px; }
.ads-platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.ads-platform-badge { padding: 5px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.ads-platform-badge.google { background: rgba(66,133,244,0.15); color: #4285f4; border: 1px solid rgba(66,133,244,0.2); }
.ads-platform-badge.meta { background: rgba(24,119,242,0.15); color: #1877f2; border: 1px solid rgba(24,119,242,0.2); }
.ads-platform-badge.snap { background: rgba(255,252,0,0.1); color: #fffc00; border: 1px solid rgba(255,252,0,0.15); }

/* Custom Package CTA */
.custom-package-cta { }
.custom-package-inner { background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(245,158,11,0.05)); border: 1px solid rgba(14,165,233,0.2); border-radius: 16px; padding: 28px 36px; }
.custom-package-inner h4 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.custom-package-inner p { color: rgba(255,255,255,0.6); margin: 0; }


/* ===================================================
   SERVICE PAGES - COMPLETE STYLES FIX
   =================================================== */

/* ── Reveal-up (Missing!) ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Float Orb Animation ── */
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.05); }
}

/* ── Service Hero ── */
.service-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-height, 80px);
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 20%, rgba(14,165,233,0.1) 0%, transparent 65%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,158,11,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ── Service Badge ── */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.25);
  color: var(--primary-light, #38bdf8);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading, Tajawal);
}

/* ── Hero Title & Subtitle ── */
.hero-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text, #fff);
  margin-bottom: 1.2rem;
  font-family: var(--font-heading, Tajawal);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted, rgba(255,255,255,0.65));
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 1.8rem;
}

/* ── Hero Features ── */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  transition: all 0.3s;
}

.feature-tag i { color: #10b981; font-size: 0.75rem; }
.feature-tag:hover { background: rgba(14,165,233,0.1); border-color: rgba(14,165,233,0.3); }

/* ── Hero CTA ── */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  align-items: center;
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats .stat {
  text-align: center;
  padding: 0 20px;
}

.hero-stats .stat:first-child { padding-right: 0; }

.hero-stats .stat .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-light, #38bdf8);
  font-family: var(--font-heading, Tajawal);
  display: inline;
  line-height: 1;
}

.hero-stats .stat > div {
  font-size: 0.78rem;
  color: var(--text-muted, rgba(255,255,255,0.5));
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  padding: 20px;
}

/* ── Section Header ── */
.section-header {
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text, #fff);
  margin-bottom: 1rem;
  line-height: 1.25;
  font-family: var(--font-heading, Tajawal);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted, rgba(255,255,255,0.55));
  line-height: 1.7;
}

/* ── Problem Cards ── */
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all 0.35s ease;
}

.problem-card:hover {
  background: rgba(239,68,68,0.05);
  border-color: rgba(239,68,68,0.2);
  transform: translateY(-4px);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.problem-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text, #fff);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading, Tajawal);
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-muted, rgba(255,255,255,0.55));
  line-height: 1.7;
  margin: 0;
}

/* Section backgrounds */
.problems-section { background: var(--bg-card, #0a0d1a); }
.audience-section { background: var(--bg, #050810); }
.packages-section { background: var(--bg-card, #0a0d1a); }
.process-section { background: var(--bg, #050810); }
.testimonials-section { background: var(--bg-card, #0a0d1a); }
.faq-section { background: var(--bg, #050810); }
.final-cta-section { background: var(--bg-card, #0a0d1a); }

/* ── Audience Cards ── */
.audience-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.audience-card:hover {
  background: rgba(14,165,233,0.06);
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-4px);
}

.audience-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.audience-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text, #fff);
  margin-bottom: 6px;
  font-family: var(--font-heading, Tajawal);
}

.audience-card p {
  font-size: 0.82rem;
  color: var(--text-muted, rgba(255,255,255,0.5));
  line-height: 1.6;
  margin: 0;
}

/* ── Package Cards ── */
.package-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(14,165,233,0.1);
}

.package-card.featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.03));
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 0 40px rgba(14,165,233,0.12);
}

.package-card.premium {
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(245,158,11,0.02));
  border-color: rgba(245,158,11,0.25);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--primary, #0ea5e9);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(14,165,233,0.4);
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.package-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary, #0ea5e9);
  margin: 0 auto 1rem;
}

.package-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text, #fff);
  margin-bottom: 4px;
  font-family: var(--font-heading, Tajawal);
}

.package-desc {
  font-size: 0.85rem;
  color: var(--text-muted, rgba(255,255,255,0.5));
  margin: 0;
}

.package-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-light, #38bdf8);
  font-family: var(--font-heading, Tajawal);
  line-height: 1;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--text-muted, rgba(255,255,255,0.5));
  margin-right: 6px;
}

.price-type {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted, rgba(255,255,255,0.4));
  margin-top: 4px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  flex: 1;
}

.package-features li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.package-features li i.fa-check { color: #10b981; font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.package-features li i.fa-times { color: rgba(255,255,255,0.2); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.package-features li.unavailable { color: rgba(255,255,255,0.3); }

.package-delivery {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding: 8px 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-delivery i { color: var(--primary, #0ea5e9); }

/* Gold button */
.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.3s;
  font-family: var(--font-heading, Tajawal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover { background: linear-gradient(135deg, #fbbf24, #f59e0b); transform: translateY(-2px); color: #000; }

/* ── Process Section ── */
.process-timeline {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  right: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), transparent);
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(14,165,233,0.1);
  border: 2px solid rgba(14,165,233,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary, #0ea5e9);
  flex-shrink: 0;
  font-family: var(--font-heading, Tajawal);
  position: relative;
  z-index: 1;
  background-clip: padding-box;
  transition: all 0.3s;
}

.process-step:hover .step-number {
  background: rgba(14,165,233,0.2);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(14,165,233,0.3);
}

.step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text, #fff);
  margin-bottom: 6px;
  font-family: var(--font-heading, Tajawal);
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted, rgba(255,255,255,0.55));
  line-height: 1.7;
  margin: 0;
}

/* ── FAQ Styles ── */
.faq-wrapper { max-width: 780px; }

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(14,165,233,0.2); }
.faq-item.open { border-color: rgba(14,165,233,0.3); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--text, #fff);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body, Cairo);
  transition: color 0.3s;
}

.faq-question i {
  color: var(--primary, #0ea5e9);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question { color: var(--primary-light, #38bdf8); }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted, rgba(255,255,255,0.6));
  line-height: 1.8;
  margin: 0;
  padding-bottom: 1rem;
}

/* ── Testimonials ── */
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgba(14,165,233,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text, #fff);
  margin: 0 0 3px;
  font-family: var(--font-heading, Tajawal);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted, rgba(255,255,255,0.4));
}

/* ── Final CTA ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.03));
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(14,165,233,0.06);
  filter: blur(60px);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text, #fff);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: var(--font-heading, Tajawal);
}

.cta-banner > .row > div > p {
  font-size: 0.95rem;
  color: var(--text-muted, rgba(255,255,255,0.55));
  margin: 0;
}

.cta-guarantee {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-guarantee i { color: #10b981; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  left: 68px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: var(--font-body, Cairo);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Sticky Mobile CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(5,8,16,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 997;
}

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  .whatsapp-float { bottom: 80px; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-subtitle { font-size: 1rem; }
  .cta-banner { padding: 32px 24px; }
  .cta-banner h2 { text-align: center; }
}

/* ── Navbar Mobile Show ── */
.navbar-collapse.show {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  background: rgba(5,8,16,0.98);
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 991px) {
  .navbar-collapse:not(.show) { display: none; }
  .navbar-collapse { flex-direction: column; }
  .navbar-nav { flex-direction: column; width: 100%; }
  .nav-cta { margin-top: 8px; width: auto !important; max-width: 220px; font-size: 0.85rem !important; padding: 10px 20px !important; text-align: center; justify-content: center; }
  .dropdown-menu { position: static; background: rgba(255,255,255,0.04); border: none; padding: 0; }
  .dropdown-menu.show { display: block; }
}


/* ===================================================
   PORTFOLIO SECTION V2 - PROFESSIONAL PROJECT SHOWCASE
   =================================================== */

.portfolio-section { background: var(--bg); padding: 90px 0; }

/* Browser Mockup */
.pf-browser {
  background: #1a1d2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.pf-browser-sm { border-radius: 10px; }

.pf-browser-bar {
  background: #252838;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pf-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.pf-dot.red { background: #ff5f57; }
.pf-dot.yellow { background: #ffbd2e; }
.pf-dot.green { background: #28c940; }

.pf-url {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
  margin-right: auto;
  background: rgba(255,255,255,0.04);
  padding: 3px 10px;
  border-radius: 20px;
}

.pf-browser img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  max-height: 340px;
  object-fit: cover;
  object-position: top;
}

.pf-browser:hover img { transform: scale(1.02); }

/* Featured project */
.portfolio-featured {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.portfolio-featured:hover { border-color: rgba(14,165,233,0.25); }

.pf-image-wrap {
  position: relative;
  padding: 24px 24px 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(139,92,246,0.04));
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.pf-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(14,165,233,0.08);
  filter: blur(60px);
  pointer-events: none;
}

.pf-content {
  padding: 40px 36px;
}

.pf-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(14,165,233,0.08);
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: -10px;
}

.pf-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.pf-content > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}

.pf-results {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pf-result-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.pf-result-item i { color: #10b981; }
.pf-result-item strong { color: #10b981; }

.pf-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pf-tech-stack span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: monospace;
  letter-spacing: 0.3px;
}

/* Grid Cards V2 */
.portfolio-card-v2 {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

.portfolio-card-v2:hover {
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pf-card-image {
  padding: 16px 16px 0;
  background: rgba(255,255,255,0.02);
}

.pf-browser-sm img {
  max-height: 250px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.pf-card-body { padding: 20px; }

.pf-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pf-card-tags { margin-bottom: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.pf-card-tags .tag { font-size: 0.72rem; padding: 2px 8px; }
.pf-card-tags .tag i { font-size: 0.65rem; }

.pf-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--font-heading);
}

.pf-card-body > p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 12px;
}

.pf-card-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(14,165,233,0.08);
  line-height: 1;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

/* ── Navbar Logo Image ── */
.nav-logo-img {
  filter: brightness(1);
  transition: opacity 0.3s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* ── Service pages logo too (Bootstrap navbar) ── */
.navbar-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Override old text brand */
.brand-text { display: none; }

@media (max-width: 768px) {
  .pf-content { padding: 24px 20px; }
  .pf-number { font-size: 3rem; }
  .pf-image-wrap { padding: 16px 16px 0; }
}


/* ===================================================
   SERVICE PAGES NAVBAR - COMPLETE FIX (Bootstrap RTL)
   =================================================== */

/* Override generic .navbar for service pages using #mainNav */
#mainNav {
  position: fixed !important;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  height: var(--nav-height, 80px);
  display: flex !important;
  align-items: center;
  background: rgba(5,8,16,0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  padding: 0 !important;
  flex-wrap: nowrap;
}

#mainNav.scrolled {
  background: rgba(5,8,16,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

#mainNav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  gap: 16px;
}

/* Brand / Logo */
#mainNav .navbar-brand {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
}

#mainNav .navbar-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hamburger */
#mainNav .navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

#mainNav .navbar-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Collapse area */
#mainNav .navbar-collapse {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 12px;
}

#mainNav .navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  /* Push nav items to RIGHT side (after logo) in RTL */
}

/* Nav items */
#mainNav .nav-item {
  position: relative;
}

#mainNav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--font-body, Cairo);
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

#mainNav .nav-link .fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.3s;
  opacity: 0.6;
}

/* Dropdown Menu */
#mainNav .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 200px;
  background: rgba(10,13,26,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: none;
  z-index: 9999;
  animation: dropIn 0.2s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

#mainNav .dropdown-menu.show { display: block; }

#mainNav .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-family: var(--font-body, Cairo);
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  width: 100%;
  text-align: right;
}

#mainNav .dropdown-item:hover {
  background: rgba(14,165,233,0.1);
  color: #fff;
}

#mainNav .dropdown-item.active {
  background: rgba(14,165,233,0.15);
  color: var(--primary-light, #38bdf8);
}

#mainNav .dropdown-item i {
  color: var(--primary, #0ea5e9);
  font-size: 0.82rem;
  width: 16px;
  text-align: center;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
  #mainNav .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* CTA Button */
#mainNav .nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.88rem;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading, Tajawal);
  font-weight: 700;
}

/* ── Mobile ── */
@media (max-width: 991px) {
  #mainNav .navbar-toggler { display: flex; }

  #mainNav .navbar-collapse {
    display: none !important;
    position: absolute;
    top: var(--nav-height, 80px);
    right: 0; left: 0;
    background: rgba(5,8,16,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - var(--nav-height, 80px));
    overflow-y: auto;
    z-index: 999;
  }

  #mainNav .navbar-collapse.show {
    display: flex !important;
  }

  #mainNav .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }

  #mainNav .nav-link {
    padding: 10px 14px !important;
    justify-content: space-between;
  }

  #mainNav .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    border-right: 2px solid rgba(14,165,233,0.3);
    border-radius: 0 0 8px 8px;
    margin-right: 14px;
    padding: 4px;
    animation: none;
  }

  #mainNav .nav-cta {
    margin-top: 8px;
    justify-content: center;
    width: auto !important;
    max-width: 220px;
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
  }
}


/* ===================================================
   HERO PHOTO + HOOK + NAVBAR SCROLL FIX
   =================================================== */

/* ── Hero Hook ── */
.hero-hook {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
/* تعديل الهوك لاين ليكون كبيراً وواضحاً وفي المنتصف */
.hook-line {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* تكبير الحجم ليكون Hook حقيقي */
    font-weight: 900;
    color: var(--accent, #f59e0b);
    font-family: var(--font-heading, Tajawal);
    display: flex;
    align-items: center;
    justify-content: center; /* هذا السطر يضمن التوسيط الأفقي */
    gap: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* إضافة تأثير بسيط لجعل الأيقونة أو الخطوط الجانبية متناسقة مع التوسيط */
.hook-line::before, 
.hook-line::after {
    content: "";
    height: 2px;
    width: 50px;
    background-color: var(--accent, #f59e0b);
    display: inline-block;
}
.hook-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading, Tajawal);
  padding-right: 4px;
}

/* ── Hero Photo ── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 40px;
}

.hero-photo-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); }
}

.hero-photo-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(14,165,233,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringRotate 12s linear infinite;
  pointer-events: none;
}
.hero-photo-ring::before {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary, #0ea5e9);
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary);
}
@keyframes ringRotate { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-photo-container {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: 50% 50% 40% 40%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(139,92,246,0.1));
  border: 2px solid rgba(14,165,233,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(14,165,233,0.1);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Floating badges on photo */
.hero-float-badge {
  position: absolute;
  background: rgba(10,13,26,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-top-right { top: 20px; left: -20px; animation-delay: 0s; }
.badge-bottom-left { bottom: 30px; right: -20px; animation-delay: 1.5s; }
.badge-top-left { top: 100px; right: -30px; animation-delay: 0.8s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Hero Typing ── */
.typing-wrap { display: block; min-height: 1.3em; }
.hero-typing {
  color: var(--primary-light, #38bdf8);
  border-left: 3px solid var(--primary);
  padding-left: 6px;
  animation: blink 0.7s step-end infinite;
}
@keyframes blink { 50% { border-color: transparent; } }

/* ── Hero Socials ── */
.hero-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.hero-social-btn:hover { background: rgba(14,165,233,0.15); border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.hero-social-btn.whatsapp:hover { background: rgba(37,211,102,0.15); border-color: #25d366; color: #25d366; }

/* ── Scroll Hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  animation: bounce 2s ease infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Navbar Scroll Fix (index #navbar) ── */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-bottom 0.4s ease;
}

#navbar.scrolled {
  background: rgba(5,8,16,0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5) !important;
}

/* ── Stats section fix ── */
.stats-section { background: var(--bg-2); padding: 60px 0; }

@media (max-width: 767px) {
  .hero-photo-container { width: 240px; height: 300px; }
  .hero-photo-ring { width: 280px; height: 280px; }
  .hero-photo-glow { width: 300px; height: 300px; }
  .badge-top-right { left: 0; }
  .badge-bottom-left { right: 0; }
  .badge-top-left { right: 0; top: 60px; }
  .hook-line { font-size: 1.3rem; }
  .hook-sub { font-size: 1.1rem; }
}


/* ===================================================
   STORE CARDS (Salla) + SEO RESULTS CARDS
   =================================================== */

/* Store Cards */
.store-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}
.store-card:hover {
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.store-img-wrap { padding: 14px 14px 0; background: rgba(255,255,255,0.02); }
.store-img-wrap .pf-browser-sm img { max-height: 180px; object-fit: cover; object-position: top; width: 100%; }
.store-card-body { padding: 16px; }
.store-tags { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.store-tags .tag { font-size: 0.72rem; padding: 2px 8px; }
.store-card-body h4 { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 6px; font-family: var(--font-heading, Tajawal); }
.store-card-body p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

.store-card-cta {
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(139,92,246,0.04));
  border-color: rgba(14,165,233,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-cta-inner {
  text-align: center;
  padding: 30px 20px;
}
.store-cta-inner i { font-size: 2.5rem; color: rgba(14,165,233,0.3); margin-bottom: 14px; display: block; }
.store-cta-inner h4 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 8px; font-family: var(--font-heading); }
.store-cta-inner p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* SEO Results */
.seo-proof-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.seo-proof-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}
.seo-proof-stat > i { font-size: 1.4rem; color: var(--primary, #0ea5e9); }
.seo-proof-stat > div { display: flex; flex-direction: column; }
.seo-proof-stat strong { font-size: 1.3rem; font-weight: 900; color: #fff; font-family: var(--font-heading); line-height: 1; }
.seo-proof-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

.seo-result-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.seo-result-card:hover { border-color: rgba(14,165,233,0.25); transform: translateY(-5px); }

.seo-result-img {
  position: relative;
  overflow: hidden;
}
.seo-result-img img {
  width: 100%;
  display: block;
  max-height: 330px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}
.seo-result-card:hover .seo-result-img img { transform: scale(1.03); }

.seo-result-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(5,8,16,0.9));
  padding: 20px 14px 10px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.seo-kpi {
  background: rgba(14,165,233,0.85);
  border-radius: 8px;
  padding: 4px 10px;
  text-align: center;
}
.seo-kpi span { display: block; font-size: 0.88rem; font-weight: 800; color: #fff; font-family: var(--font-heading); line-height: 1; }
.seo-kpi small { font-size: 0.65rem; color: rgba(255,255,255,0.7); }

.seo-result-body {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.seo-result-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
}
.seo-result-label i { color: var(--primary); font-size: 0.78rem; }
.seo-result-period {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.seo-result-period i { color: var(--accent, #f59e0b); }

