/**
 * أنماط التصميم الرئيسية - البرق لنقل العفش بالرياض
 * تصميم مخصص، عربي RTL أصيل، ألوان: أزرق فاتح / سماوي / ذهبي / رمادي / أبيض
 * لا يوجد اعتمادات خارجية - الخطوط والأيقونات محلية بالكامل
 */

/* ==========================================================================
   1. تعريف الخطوط المحلية Local Fonts
   ========================================================================== */
@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-VariableFont.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-Regular.ttf') format('truetype');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-Bold.ttf') format('truetype');
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. متغيرات الألوان والتصميم Design Tokens
   ========================================================================== */
:root {
  /* نظام الألوان الأساسي */
  --primary-blue: #0284c7;       /* أزرق ساطع موثوق */
  --primary-dark: #0369a1;       /* أزرق عميق */
  --primary-light: #e0f2fe;      /* خلفية زرقاء فاتحة جداً */
  --primary-border: #bae6fd;     /* حدود زرقاء ناعمة */
  --primary-gradient: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  
  /* ألوان التمييز والتأكيد (ذهب - فخامة واحتراف) */
  --accent-gold: #f59e0b;        /* ذهبي دافئ */
  --accent-gold-dark: #d97706;   /* ذهبي غامق */
  --accent-gold-light: #fef3c7;  /* ذهبي خفيف */

  /* واتساب أخضر مميز */
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eb956;
  --whatsapp-dark: #128c7e;

  /* درجات الرمادي والنصوص */
  --color-slate-900: #0f172a;    /* نصوص رئيسية وعناوين */
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;    /* نصوص فرعية */
  --color-slate-600: #475569;
  --color-slate-500: #64748b;    /* ميكرو-كوبي ومعلومات جانبية */
  --color-slate-200: #e2e8f0;    /* خطوط فاصلة */
  --color-slate-100: #f1f5f9;    /* كروت ناعمة */
  --color-slate-50:  #f8fafc;    /* خلفية الصفحة البديلة */
  --color-white:     #ffffff;

  /* الخطوط */
  --font-primary: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  --font-heading: 'Tajawal', 'Cairo', sans-serif;

  /* الظلال */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -6px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 40px -12px rgba(2, 132, 199, 0.2);

  /* الحواف الدائرية */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* الانتقالات */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   3. إعادة التعيين والقواعد العامة
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate-700);
  background-color: #ffffff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* الأيقونات المضمنة */
.icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.icon-sm {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.icon-lg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* العناوين العامة */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-slate-900);
  line-height: 1.35;
  font-weight: 800;
}

/* ==========================================================================
   4. الأزرار العامة Button Components
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary-header {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary-header:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4);
}

.btn-whatsapp-header {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   5. الشريط العلوي والهيدر Header
   ========================================================================== */
.top-bar {
  background-color: var(--color-slate-900);
  color: var(--color-slate-200);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-gold);
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  direction: ltr;
}

.top-link:hover {
  color: #38bdf8;
}

.divider-v {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-slate-200);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  min-width: 190px;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-slate-700);
  padding: 6px 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background-color: var(--color-slate-100);
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-slate-900);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   6. قسم البطل Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 56px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid var(--primary-border);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--color-slate-900);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-highlight {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(245, 158, 11, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-slate-600);
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-hero-call {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 16px 30px;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
}

.btn-hero-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.45);
}

.btn-hero-wa {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  padding: 16px 30px;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-hero-wa:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.hero-trust-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-slate-700);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

/* بطاقة الصورة الرئيسية */
.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-card-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--accent-gold);
  max-width: 280px;
}

.hero-badge-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-badge-sub {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* ==========================================================================
   7. شريط الاتصال السريع Quick Contact Bar
   ========================================================================== */
.quick-contact-bar {
  background: var(--color-slate-900);
  color: #ffffff;
  padding: 24px 0;
  margin-top: -10px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.qc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.qc-text-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qc-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.qc-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.qc-desc {
  font-size: 0.92rem;
  color: #94a3b8;
}

.qc-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.qc-phone-display {
  display: flex;
  flex-direction: column;
  text-align: left;
  direction: ltr;
}

.qc-phone-lbl {
  font-size: 0.78rem;
  color: #94a3b8;
  font-family: var(--font-primary);
}

.qc-phone-val {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.btn-qc-call {
  background: var(--primary-blue);
  color: #ffffff;
  padding: 12px 24px;
}

.btn-qc-call:hover {
  background: var(--primary-dark);
}

.btn-qc-wa {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 12px 24px;
}

.btn-qc-wa:hover {
  background: var(--whatsapp-hover);
}

/* ==========================================================================
   8. الأقسام والعناوين Section Headers
   ========================================================================== */
section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--color-slate-50);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid var(--primary-border);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--color-slate-900);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-slate-600);
  line-height: 1.8;
}

/* ==========================================================================
   9. قسم عن المؤسسة About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid #ffffff;
}

.about-img-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-img-item:hover img {
  transform: scale(1.04);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.about-paragraph {
  font-size: 1.08rem;
  color: var(--color-slate-600);
  margin-bottom: 24px;
  line-height: 1.85;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.pillar-card {
  background: var(--color-slate-50);
  padding: 16px;
  border-radius: var(--radius-md);
  border-right: 3px solid var(--primary-blue);
}

.pillar-title {
  font-weight: 800;
  color: var(--color-slate-900);
  font-size: 1rem;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--color-slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   10. شبكة الخدمات Services Grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-slate-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.service-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.service-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-slate-900);
}

.service-card-text {
  font-size: 0.98rem;
  color: var(--color-slate-600);
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features-list li {
  font-size: 0.88rem;
  color: var(--color-slate-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li::before {
  content: '•';
  color: var(--accent-gold);
  font-size: 1.4rem;
  line-height: 0;
}

.service-card-footer {
  border-top: 1px solid var(--color-slate-100);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-card-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 0.95rem;
}

.btn-card-call:hover {
  color: var(--primary-dark);
}

.btn-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--whatsapp-green);
  font-weight: 800;
  font-size: 0.95rem;
}

.btn-card-wa:hover {
  color: var(--whatsapp-hover);
}

/* ==========================================================================
   11. قسم دينا نقل عفش بالرياض Dina Highlight Section
   ========================================================================== */
.dina-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.dina-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.dina-content .section-tag {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.dina-title {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.dina-desc {
  font-size: 1.12rem;
  color: #cbd5e1;
  line-height: 1.85;
  margin-bottom: 24px;
}

.dina-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.dina-spec-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--radius-md);
}

.dina-spec-title {
  font-weight: 800;
  font-size: 1rem;
  color: #38bdf8;
  margin-bottom: 4px;
}

.dina-spec-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
}

.dina-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dina-media-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.dina-media-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ==========================================================================
   12. قسم تغطية أحياء الرياض Coverage Areas
   ========================================================================== */
.coverage-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--color-slate-100);
  color: var(--color-slate-700);
  border: 1px solid var(--color-slate-200);
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.tab-panel {
  display: none;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-slate-200);
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-slate-100);
}

.tab-panel-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.tab-panel-desc {
  font-size: 1.02rem;
  color: var(--color-slate-600);
}

.neighborhoods-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.n-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-slate-800);
  transition: var(--transition);
}

.n-tag:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-border);
  color: var(--primary-dark);
}

/* بحث الأحياء السريع */
.coverage-search-box {
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-slate-200);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.search-icon-pos {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--color-slate-500);
}

/* ==========================================================================
   13. قسم معرض الصور والعمل الميداني Gallery Section
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--color-slate-100);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.gallery-caption {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

/* ==========================================================================
   14. خطوات طلب الخدمة How it works
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-slate-200);
  line-height: 1;
}

.step-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: var(--primary-light);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--primary-border);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-slate-900);
}

.step-text {
  font-size: 0.95rem;
  color: var(--color-slate-600);
  line-height: 1.7;
}

/* ==========================================================================
   15. لماذا تختار البرق Why Choose Us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.why-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.why-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-content p {
  font-size: 0.95rem;
  color: var(--color-slate-600);
  line-height: 1.7;
}

/* ==========================================================================
   16. الأسئلة الشائعة FAQ Section
   ========================================================================== */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-border);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--color-slate-900);
  background: none;
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  background: var(--color-slate-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary-blue);
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(180deg);
  background-color: var(--primary-blue);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--color-slate-600);
  line-height: 1.8;
  border-top: 1px solid var(--color-slate-100);
  padding-top: 14px;
}

/* ==========================================================================
   17. قسم الحث النهائي CTA Global Banner
   ========================================================================== */
.section-cta-global {
  padding: 40px 0 80px;
}

.cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-glow-element {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.cta-pre-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.cta-heading {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-subtext {
  font-size: 1.2rem;
  color: #e0f2fe;
  line-height: 1.8;
  margin-bottom: 34px;
}

.cta-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-cta-call {
  background: #ffffff;
  color: var(--primary-dark);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-call:hover {
  background: var(--color-slate-100);
  transform: translateY(-2px);
}

.btn-cta-wa {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.cta-btn-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.cta-btn-title {
  font-size: 1.1rem;
  font-weight: 800;
}

.cta-btn-num {
  font-size: 0.85rem;
  opacity: 0.9;
  font-family: var(--font-primary);
}

.cta-features-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #bae6fd;
  font-weight: 600;
}

/* ==========================================================================
   18. الفوتر Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-slate-900);
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-desc {
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.f-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
  height: 2px;
  background-color: var(--primary-blue);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(-4px);
}

.footer-contact-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: #ffffff;
  transition: var(--transition);
}

.btn-call-footer {
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(2, 132, 199, 0.4);
}

.btn-call-footer:hover {
  background: var(--primary-blue);
}

.btn-wa-footer {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.btn-wa-footer:hover {
  background: var(--whatsapp-green);
}

.f-contact-details {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.f-lbl {
  font-size: 0.78rem;
  color: #cbd5e1;
}

.f-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-bottom {
  padding: 22px 0;
  background: #090d16;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: #38bdf8;
}

/* ==========================================================================
   19. الأزرار العائمة Floating Contact Buttons
   ========================================================================== */
.floating-contact-bar {
  position: fixed;
  bottom: 30px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: var(--transition);
}

.btn-floating-whatsapp {
  background-color: var(--whatsapp-green);
}

.btn-floating-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.08);
}

.btn-floating-phone {
  background: var(--primary-gradient);
}

.btn-floating-phone:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: scale(1.08);
}

.float-icon {
  width: 28px;
  height: 28px;
}

.float-tooltip {
  position: absolute;
  left: 70px;
  background: var(--color-slate-900);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .float-tooltip {
  opacity: 1;
}

/* شريط الاتصال الثابت أسفل الشاشة للجوال */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--color-slate-200);
  gap: 10px;
}

.m-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.98rem;
  color: #ffffff;
}

.m-btn-call {
  background: var(--primary-gradient);
}

.m-btn-wa {
  background: var(--whatsapp-green);
}

/* تقليل الحركة لمن يفضل ذلك */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
