/* ==============================================================================
   مكتب أبو مشعل للخدمات العامة - التصميم الجديد المتكامل 
   هوية فاخرة: Midnight Executive & Royal Sapphire Blue with Champagne Gold
   خطوط رقمية عصرية: Readex Pro & Cairo
   ============================================================================== */

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

:root {
  /* الخطوط */
  --font-heading: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-body: 'Readex Pro', system-ui, -apple-system, sans-serif;

  /* لوحة الألوان الرئيسية: الكحلي الملكي الفاخر + الأزرق الكهربائي + الذهب الدافئ */
  --color-primary: #0f172a;        /* كحلي داكن عميق */
  --color-primary-light: #1e293b;  /* كحلي متوسط */
  --color-royal-blue: #1d4ed8;     /* أزرق ملكي */
  --color-sapphire: #2563eb;       /* أزرق ساطع */
  --color-cyan: #0284c7;           /* تدرج سيان */
  --color-gold: #f59e0b;           /* ذهبي عنبري دافئ */
  --color-gold-hover: #d97706;     /* ذهبي داكن */
  --color-whatsapp: #22c55e;       /* أخضر واتساب حيوي */
  --color-whatsapp-dark: #16a34a;  /* أخضر واتساب داكن */

  /* ألوان الخلفيات */
  --bg-main: #f8fafc;              /* خلفية نظيفة مريحة للعين */
  --bg-surface: #ffffff;           /* بطاقات بيضاء ناصعة */
  --bg-surface-soft: #f1f5f9;      /* أسطح ثانوية هادئة */
  --bg-dark-hero: #0b1329;         /* كحلي فاحم للهيدر والبانرات */
  --bg-dark-card: #131e3d;         /* بطاقة داكنة راقية */
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-glass-dark: rgba(15, 23, 42, 0.85);

  /* ألوان النصوص */
  --text-dark: #0f172a;            /* عناوين سوداء كحلية */
  --text-muted: #475569;           /* نصوص فرعية واضحة */
  --text-light: #94a3b8;           /* نصوص رمادية فاتحة */
  --text-white: #ffffff;           /* أبيض ناصع */

  /* الحدود والظلال */
  --border-subtle: #e2e8f0;
  --border-focus: #3b82f6;
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-blue-glow: 0 10px 30px rgba(37, 99, 235, 0.25);
  --shadow-gold-glow: 0 10px 30px rgba(245, 158, 11, 0.25);
  --shadow-green-glow: 0 10px 30px rgba(34, 197, 94, 0.3);

  /* الاستدارات */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* الانتقالات */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==============================================================================
   إعادة الضبط والقواعد الأساسية
   ============================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  direction: rtl;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-muted);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.35;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==============================================================================
   الشريط الإعلاني العلوي (Announcement Top Bar)
   ============================================================================== */
.top-notice-bar {
  background: #070c1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.top-notice-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-notice-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.status-pulse-dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
}

.status-pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: pulseRadar 2s infinite ease-out;
}

@keyframes pulseRadar {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.top-notice-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold);
  font-weight: 600;
  direction: ltr;
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}

.top-phone-link:hover {
  color: #fde047;
  transform: translateY(-1px);
}

.top-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #94a3b8;
  font-size: 0.82rem;
}

/* ==============================================================================
   الهيدر الرئيسي وشريط التنقل (Main Header & Navigation)
   ============================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(11, 19, 41, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition-normal);
}

.site-header.is-scrolled {
  background: rgba(7, 12, 26, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(37, 99, 235, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.header-inner.header-clean {
  justify-content: center;
  text-align: center;
}

/* الهوية والشعار */
.brand-identity {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.brand-identity:hover .brand-emblem {
  transform: rotate(6deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 400;
}

/* قائمة التصفح */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* زر الهيدر المباشر */
.header-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  transition: var(--transition-normal);
}

.header-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.35rem;
  padding: 0.5rem;
}

/* ==============================================================================
   قسم البطل الحديث (Cinematic Hero Section)
   ============================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #1e293b 0%, #0b1329 70%, #070c1a 100%);
  color: #ffffff;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

/* شبكة وإضاءات الخلفية */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}

.glow-blue {
  width: 500px;
  height: 500px;
  background: #2563eb;
  top: -120px;
  left: -100px;
}

.glow-gold {
  width: 400px;
  height: 400px;
  background: #d97706;
  bottom: -100px;
  right: 5%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

/* نص وعناصر الهيرو */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-badge-pill i {
  color: var(--color-gold);
}

.hero-main-title {
  font-size: 2.75rem;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #fde047 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  font-size: 1.12rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-lead-text strong {
  color: #ffffff;
}

/* أزرار الإجراء السريع */
.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.45);
  color: #ffffff;
}

.btn-call {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
  color: #ffffff;
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
}

/* شريط الهاتف الصريح السريع في الهيرو */
.hero-hotline-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
}

.hotline-label {
  color: #94a3b8;
}

.hotline-number {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: #fde047;
  direction: ltr;
  letter-spacing: 0.5px;
}

.mini-copy-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.mini-copy-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* بطاقة مركز العمليات والتعقيب السريع بالهيرو */
.hero-operations-card {
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  position: relative;
}

.card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.card-top-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.card-top-title i {
  color: var(--color-gold);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.live-indicator::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
}

.operations-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.op-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-normal);
}

.op-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.op-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(2, 132, 199, 0.25) 100%);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.op-content h4 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.op-content p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.55;
}

.card-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
}

.card-action-bar span {
  font-size: 0.88rem;
  color: #cbd5e1;
  font-weight: 500;
}

.quick-call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-royal-blue);
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.quick-call-link:hover {
  background: #1e40af;
}

/* ==============================================================================
   شريط الإحصائيات والأرقام (Floating Stats Strip)
   ============================================================================== */
.stats-floating-section {
  position: relative;
  margin-top: -2.8rem;
  z-index: 10;
}

.stats-glass-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 1rem;
  border-left: 1px solid #f1f5f9;
}

.stat-item:last-child {
  border-left: none;
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: #eff6ff;
  color: var(--color-royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.stat-item:hover .stat-icon-wrap {
  background: var(--color-royal-blue);
  color: #ffffff;
  transform: scale(1.08);
}

.stat-metric-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-metric-value span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-royal-blue);
}

.stat-metric-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==============================================================================
   الأقسام العامة والهيدرز المشتركة
   ============================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: #f1f5f9;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-royal-blue);
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}

.section-main-heading {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  letter-spacing: -0.3px;
}

.section-sub-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================================================================
   قسم عن المكتب (About Section - Modern Asymmetric Grid)
   ============================================================================== */
.about-asymmetric-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 3.5rem;
}

.about-banner-card {
  position: relative;
  background: linear-gradient(145deg, #0b1329 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

.about-card-title {
  font-size: 1.85rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.about-card-body {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-quote-box {
  background: rgba(255, 255, 255, 0.05);
  border-right: 4px solid var(--color-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.94rem;
  color: #f1f5f9;
  line-height: 1.75;
  font-style: italic;
}

.about-quote-box i {
  color: var(--color-gold);
  margin-left: 0.4rem;
}

.about-features-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xs);
}

.feature-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.tile-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: var(--color-royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-normal);
}

.feature-tile:hover .tile-icon {
  background: var(--color-royal-blue);
  color: #ffffff;
}

.feature-tile h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-tile p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==============================================================================
   قسم قيم وركائز العمل (Values Section)
   ============================================================================== */
.values-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-deck-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  overflow: hidden;
}

.value-deck-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.4);
}

.value-step-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
}

.value-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.value-deck-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.value-deck-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.value-progress-line {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #e2e8f0;
}

.value-deck-card:hover .value-progress-line {
  background: linear-gradient(90deg, #1d4ed8, #0284c7, #f59e0b);
}

/* ==============================================================================
   قسم الخدمات الشاملة (Comprehensive Services Hub)
   ============================================================================== */
.services-hub-card {
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.services-hub-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.services-hub-title {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.services-hub-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* شريط المنصات والخدمات */
.platforms-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f1f5f9;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.platform-pill:hover {
  background: rgba(37, 99, 235, 0.35);
  border-color: #60a5fa;
  color: #ffffff;
}

.services-hub-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==============================================================================
   قسم أرقام التواصل المباشر (Direct Contact Phones Center)
   ============================================================================== */
.phones-center-section {
  background: #ffffff;
}

.phones-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.phone-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-card:hover {
  border-color: var(--color-royal-blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

.phone-type-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-royal-blue);
  background: #eff6ff;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.phone-card-text {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  direction: ltr;
  letter-spacing: 0.8px;
  margin-bottom: 1.5rem;
  padding: 0.65rem 0.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px dashed #cbd5e1;
  user-select: all;
}

.phone-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-card-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.btn-card-copy:hover {
  background: #1e293b;
}

.btn-card-copy.copied {
  background: var(--color-whatsapp) !important;
}

.btn-card-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #eff6ff;
  color: var(--color-royal-blue);
  border: 1px solid #bfdbfe;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.btn-card-call:hover {
  background: var(--color-royal-blue);
  color: #ffffff;
}

/* ==============================================================================
   قسم آراء العملاء (Reviews Section)
   ============================================================================== */
.reviews-grid-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.customer-review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.85rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}

.customer-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.review-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.stars-list {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.95rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #16a34a;
  background: #f0fdf4;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.review-text {
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.author-letter-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-meta h4 {
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================================================================
   قسم الدعوة للتواصل (Call to Action Banner)
   ============================================================================== */
.cta-banner-container {
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 2.5rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-container h2 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-banner-container p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.cta-actions-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==============================================================================
   أرقام التواصل الصريحة أعلى الفوتر
   ============================================================================== */
.plain-footer-numbers {
  background: #070c1a;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.plain-numbers-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.plain-num-tag {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #94a3b8;
  direction: ltr;
  letter-spacing: 0.5px;
}

/* ==============================================================================
   الفوتر وتذييل الصفحة (Footer)
   ============================================================================== */
.site-footer {
  background: #070c1a;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #94a3b8;
  max-width: 400px;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(-4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.footer-contact-row i {
  color: var(--color-gold);
  width: 18px;
}

/* التنويه القانوني بالفوتر */
.footer-disclaimer-wrapper {
  margin-bottom: 2.5rem;
}

.footer-disclaimer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.footer-disclaimer-card i {
  color: #f59e0b;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-disclaimer-card p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==============================================================================
   الزر العائم التفاعلي (Floating Action Button - FAB)
   ============================================================================== */
.floating-contact-hub {
  position: fixed;
  bottom: 2.2rem;
  left: 2.2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.fab-popup-menu {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.92);
  transition: var(--transition-normal);
  pointer-events: none;
}

.floating-contact-hub.is-active .fab-popup-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.fab-pill-link:hover {
  transform: scale(1.05);
}

.fab-whatsapp-link {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.fab-call-link {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.fab-trigger-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.fab-trigger-btn:hover {
  transform: scale(1.08);
}

.fab-trigger-btn .icon-close {
  display: none;
}

.floating-contact-hub.is-active .fab-trigger-btn .icon-default {
  display: none;
}

.floating-contact-hub.is-active .fab-trigger-btn .icon-close {
  display: block;
}

.fab-radar-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.7);
  animation: fabWave 2.4s infinite cubic-bezier(0.1, 0, 0.3, 1);
  pointer-events: none;
}

@keyframes fabWave {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ==============================================================================
   شريط التواصل السريع المخصص للجوال (Mobile Bottom Action Bar)
   ============================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: rgba(11, 19, 41, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1rem env(safe-area-inset-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.35);
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.mobile-btn-wa {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.mobile-btn-call {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* ==============================================================================
   إشعار نسخ الرقم (Toast Notification)
   ============================================================================== */
.copy-toast {
  position: fixed;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.copy-toast.show {
  transform: translateX(50%) translateY(0);
  opacity: 1;
}

.copy-toast i {
  color: var(--color-whatsapp);
  font-size: 1.15rem;
}

/* ==============================================================================
   التجاوب مع الشاشات (Responsive Media Queries)
   ============================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-glass-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.75rem;
  }

  .stat-item:nth-child(2) {
    border-left: none;
  }

  .about-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .values-deck-grid,
  .phones-cards-grid,
  .reviews-grid-deck {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .header-action-btn {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-section {
    padding: 3rem 0 4rem;
  }

  .hero-main-title {
    font-size: 2.05rem;
  }

  .hero-lead-text {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-operations-card {
    padding: 1.5rem;
  }

  .stats-floating-section {
    margin-top: -1.5rem;
  }

  .stats-glass-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .stat-item {
    border-left: none;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1rem;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about-features-matrix {
    grid-template-columns: 1fr;
  }

  .values-deck-grid,
  .phones-cards-grid,
  .reviews-grid-deck {
    grid-template-columns: 1fr;
  }

  .services-hub-card {
    padding: 2.5rem 1.5rem;
  }

  .services-hub-title {
    font-size: 1.85rem;
  }

  .cta-banner-container {
    padding: 2.5rem 1.5rem;
  }

  .cta-banner-container h2 {
    font-size: 1.85rem;
  }

  .cta-actions-row {
    flex-direction: column;
  }

  .cta-actions-row .btn {
    width: 100%;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floating-contact-hub {
    bottom: 5.5rem;
    left: 1.2rem;
  }

  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }
}
