/* ================================================================
   شركة العيداب للمقاولات العامة — ثيم فاتح (Light Theme)
   الخلفية: أبيض وكريمي | اللهجة: سيان + ذهبي
   ================================================================ */

/* ── متغيرات CSS ─────────────────────────────────────────────────── */
:root {
  /* خلفيات فاتحة */
  --clr-bg:           #F5F8FF;
  --clr-bg-2:         #EBF1FC;
  --clr-bg-card:      #FFFFFF;
  --clr-bg-card-2:    #F0F6FF;
  --clr-bg-nav:       rgba(255,255,255,0.92);

  /* ألوان الهوية */
  --clr-accent:       #0099CC;
  --clr-accent-light: #00AEEF;
  --clr-accent-deep:  #006FA3;
  --clr-accent-glow:  rgba(0,153,204,0.18);
  --clr-gold:         #E09000;
  --clr-gold-light:   #FFB800;
  --clr-gold-glow:    rgba(224,144,0,0.15);
  --clr-teal:         #00A896;
  --clr-violet:       #5B50D6;

  /* نصوص داكنة على خلفية فاتحة */
  --clr-white:        #FFFFFF;
  --clr-dark:         #0D1B2E;
  --clr-heading:      #0D1B2E;
  --clr-text:         #334E6E;
  --clr-text-muted:   #6B87A8;

  /* حدود خفيفة */
  --clr-border:       rgba(0,0,0,0.08);
  --clr-border-md:    rgba(0,0,0,0.12);
  --clr-border-accent:rgba(0,153,204,0.3);
  --clr-border-gold:  rgba(224,144,0,0.3);

  --ff-ar:   'Cairo', 'Tajawal', sans-serif;
  --section-py: clamp(80px, 10vw, 120px);
  --radius-card: 18px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* ظلال ناعمة */
  --shadow-sm:  0 2px 12px rgba(0,50,100,0.07);
  --shadow-md:  0 6px 30px rgba(0,50,100,0.1);
  --shadow-lg:  0 16px 60px rgba(0,50,100,0.13);
  --shadow-accent: 0 8px 30px rgba(0,153,204,0.22);
}

/* ── إعادة ضبط عامة ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--ff-ar);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color var(--transition); }
ul { list-style: none; padding: 0; }

/* ── أدوات مساعدة ───────────────────────────────────────────────── */
.text-accent {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--clr-accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label.centered { justify-content: center; }
.label-line {
  flex: 1;
  max-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-light));
  border-radius: 2px;
  opacity: 0.6;
}

.section-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900;
  color: var(--clr-heading);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-body {
  font-size: 15px;
  color: var(--clr-text);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ── أزرار ──────────────────────────────────────────────────────── */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  color: #fff !important;
  font-family: var(--ff-ar);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition);
}
.btn-primary-brand:hover {
  background: linear-gradient(135deg, var(--clr-accent-deep), var(--clr-accent));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,153,204,0.35);
}
.btn-ghost-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-accent) !important;
  font-family: var(--ff-ar);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--clr-accent);
  border-radius: 10px;
  padding: 11px 28px;
  transition: all var(--transition);
}
.btn-ghost-brand:hover {
  background: var(--clr-accent);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ── انيميشن عند التمرير ────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-right"] { transform: translateX(24px); }
[data-animate="fade-left"]  { transform: translateX(-24px); }
[data-animate].animated { opacity: 1; transform: translate(0) !important; }

/* ── شريط التنقل ────────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 18px 0;
  z-index: 1000;
  transition: background var(--transition-slow), padding var(--transition-slow), box-shadow var(--transition-slow);
}
#mainNav.scrolled {
  background: var(--clr-bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,50,100,0.10);
  border-bottom: 1px solid var(--clr-border);
}

/* الشعار */
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-family: var(--ff-ar); font-weight: 900; font-size: 18px; color: var(--clr-dark); }
.logo-sub  { font-family: var(--ff-ar); font-size: 11px; color: var(--clr-accent); font-weight: 600; }

#mainNav.scrolled .logo-main { color: var(--clr-dark); }
#mainNav.scrolled .logo-sub  { color: var(--clr-accent); }

/* روابط التنقل */
.navbar-nav .nav-link {
  font-family: var(--ff-ar);
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-text) !important;
  padding: 7px 14px !important;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-accent) !important;
  background: rgba(0,153,204,0.08);
}
#mainNav.scrolled .navbar-nav .nav-link { color: var(--clr-text) !important; }
#mainNav.scrolled .navbar-nav .nav-link:hover,
#mainNav.scrolled .navbar-nav .nav-link.active {
  color: var(--clr-accent) !important;
  background: rgba(0,153,204,0.08);
}

/* زر الهامبرغر */
.navbar-toggler {
  border: none; background: none;
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.nav-toggler-bar {
  display: block; width: 24px; height: 2px;
  background: var(--clr-dark); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
#mainNav.scrolled .nav-toggler-bar { background: var(--clr-dark); }
.navbar-toggler:focus { outline: none; box-shadow: none; }

/* ── قسم الهيرو ──────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #EBF1FC 0%, #F5F8FF 50%, #EBF1FC 100%);
  overflow: hidden;
  padding-top: 80px;
}

/* شبكة الخلفية المتحركة */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,153,204,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,153,204,0.07) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 55px 55px; }
}

/* كرات الضوء */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 {
  width: 600px; height: 600px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(0,153,204,0.15) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px; bottom: -150px; left: 5%;
  background: radial-gradient(circle, rgba(91,80,214,0.12) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; padding: 60px 0; }

/* شارة الهيرو */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,153,204,0.1);
  border: 1px solid rgba(0,153,204,0.25);
  color: var(--clr-accent-deep);
  font-size: 12px; font-weight: 700;
  border-radius: 100px; padding: 7px 18px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--clr-accent); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--clr-accent);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 900; color: var(--clr-heading); line-height: 1.18; margin-bottom: 22px;
}
.hero-headline .text-accent {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px; color: var(--clr-text);
  max-width: 560px; line-height: 1.9; margin-bottom: 36px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-section .btn-primary-brand {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  box-shadow: 0 8px 30px rgba(0,153,204,0.35);
}
.hero-section .btn-ghost-brand {
  color: var(--clr-accent-deep) !important;
  border-color: rgba(0,153,204,0.4);
}
.hero-section .btn-ghost-brand:hover {
  background: rgba(0,153,204,0.1);
  border-color: var(--clr-accent);
  color: var(--clr-accent) !important;
}

/* بطاقة الإحصائيات */
.hero-stats-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,153,204,0.2);
  border-radius: 22px; padding: 32px 28px;
  display: flex; flex-direction: column; min-width: 270px;
  box-shadow: 0 20px 60px rgba(0,50,100,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}
.stat-item  { padding: 18px 0; display: flex; flex-direction: column; gap: 6px; }
.stat-number {
  font-size: 46px; font-weight: 900; color: var(--clr-heading); line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-sup   { font-size: 20px; font-weight: 700; color: var(--clr-gold); }
.stat-label { font-size: 13px; color: var(--clr-text-muted); font-weight: 600; }
.stat-divider { height: 1px; background: rgba(0,153,204,0.15); }

/* مؤشر التمرير */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; animation: fadeInUp 1s ease 1.2s both;
}
.scroll-indicator span { font-size: 11px; letter-spacing: 2px; color: var(--clr-text-muted); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(0,153,204,0.7), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%      { transform: scaleY(0); transform-origin: top; }
  50%     { transform: scaleY(1); transform-origin: top; }
  50.01%  { transform: scaleY(1); transform-origin: bottom; }
  100%    { transform: scaleY(0); transform-origin: bottom; }
}

/* ── قسم من نحن ─────────────────────────────────────────────────── */
.section-about {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

/* مجموعة الصور */
.about-image-collage { position: relative; height: 460px; }
.collage-main {
  position: absolute; top: 0; right: 0;
  width: 80%; height: 85%;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.collage-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collage-main:hover img { transform: scale(1.04); }

.collage-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  color: #fff; border-radius: 12px; padding: 10px 18px;
  box-shadow: var(--shadow-accent);
}
.badge-year { display: block; font-size: 26px; font-weight: 900; line-height: 1; }
.badge-text { display: block; font-size: 11px; font-weight: 700; opacity: 0.9; }

.collage-secondary {
  position: absolute; bottom: 0; left: 0;
  width: 42%; height: 46%;
  border-radius: 14px; overflow: hidden;
  border: 4px solid var(--clr-bg);
  box-shadow: var(--shadow-md);
}
.collage-secondary img { width: 100%; height: 100%; object-fit: cover; }

.collage-accent-block {
  position: absolute; top: 50px; left: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.accent-line { width: 2px; height: 60px; background: var(--clr-accent); opacity: 0.4; border-radius: 2px; }
.accent-dot { width: 10px; height: 10px; background: var(--clr-accent); border-radius: 50%; box-shadow: var(--shadow-accent); }

/* المسار الزمني */
.about-timeline { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.timeline-item { display: flex; align-items: center; gap: 14px; }
.tl-dot {
  flex-shrink: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--clr-border-md);
  border: 2px solid var(--clr-border-accent);
  transition: all var(--transition);
}
.tl-dot.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  box-shadow: 0 0 10px var(--clr-gold-glow);
}
.tl-content { font-size: 14px; color: var(--clr-text); }
.tl-content strong { color: var(--clr-accent); font-weight: 800; }

/* اقتباس الرئيس التنفيذي */
.ceo-quote {
  background: linear-gradient(135deg, #EBF4FF, #F0F8FF);
  border-right: 4px solid var(--clr-gold);
  border-radius: 14px 0 0 14px;
  padding: 24px 28px; margin-top: 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.quote-mark {
  position: absolute; top: -15px; right: 16px;
  font-size: 80px; color: var(--clr-gold); opacity: 0.15;
  font-family: Georgia, serif; line-height: 1;
}
.ceo-quote p { font-size: 15px; font-style: italic; color: var(--clr-text); margin-bottom: 16px; position: relative; z-index: 1; }
.ceo-quote footer strong { display: block; font-size: 14px; font-weight: 800; color: var(--clr-heading); }
.ceo-quote footer span { font-size: 12px; color: var(--clr-accent); font-weight: 600; }

/* بطاقات الرؤية والرسالة */
.vision-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--clr-border-accent); }
.col-md-6:nth-child(1) .vision-card { border-top: 3px solid var(--clr-accent); }
.col-md-6:nth-child(2) .vision-card { border-top: 3px solid var(--clr-gold); }
.vc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,153,204,0.12), rgba(0,174,239,0.08));
  border: 1px solid var(--clr-border-accent);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--clr-accent); margin-bottom: 16px;
}
.col-md-6:nth-child(2) .vc-icon {
  background: linear-gradient(135deg, rgba(224,144,0,0.12), rgba(255,184,0,0.08));
  border-color: var(--clr-border-gold); color: var(--clr-gold);
}
.vision-card h4 { font-size: 18px; font-weight: 800; color: var(--clr-heading); margin-bottom: 10px; }
.vision-card p { font-size: 14px; color: var(--clr-text); line-height: 1.85; margin: 0; }

/* ── قسم الخدمات ────────────────────────────────────────────────── */
.section-services {
  position: relative; padding: var(--section-py) 0;
  background: var(--clr-bg-2);
}
.section-edge-top, .section-edge-bottom {
  position: absolute; left: 0; right: 0; height: 80px; pointer-events: none;
}
.section-edge-top { top: 0; background: linear-gradient(to bottom, var(--clr-bg), transparent); }
.section-edge-bottom { bottom: 0; background: linear-gradient(to top, var(--clr-bg), transparent); }

/* بطاقات الخدمات */
.service-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card); padding: 32px 26px; height: 100%;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity var(--transition);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}
.col-lg-4:nth-child(1) .service-card::after { background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-light)); }
.col-lg-4:nth-child(2) .service-card::after { background: linear-gradient(90deg, var(--clr-gold), #FFD060); }
.col-lg-4:nth-child(3) .service-card::after { background: linear-gradient(90deg, var(--clr-teal), var(--clr-accent-light)); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }

.service-card--featured {
  background: linear-gradient(145deg, #EBF7FF, #F5FBFF);
  border-color: var(--clr-border-accent);
  box-shadow: 0 4px 24px rgba(0,153,204,0.12);
}
.service-card--featured::after { opacity: 1; }

.service-featured-badge {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--clr-gold), #FFD060);
  color: #5A3A00;
  font-size: 10px; font-weight: 800;
  padding: 4px 12px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(224,144,0,0.3);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.col-lg-4:nth-child(1) .service-icon-wrap { background: linear-gradient(135deg, rgba(0,153,204,0.12), rgba(0,174,239,0.07)); border: 1px solid var(--clr-border-accent); }
.col-lg-4:nth-child(2) .service-icon-wrap { background: linear-gradient(135deg, rgba(224,144,0,0.12), rgba(255,184,0,0.07)); border: 1px solid var(--clr-border-gold); }
.col-lg-4:nth-child(3) .service-icon-wrap { background: linear-gradient(135deg, rgba(0,168,150,0.12), rgba(0,174,239,0.07)); border: 1px solid rgba(0,168,150,0.25); }

.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.service-icon { width: 26px; height: 26px; }
.col-lg-4:nth-child(1) .service-icon { color: var(--clr-accent); }
.col-lg-4:nth-child(2) .service-icon { color: var(--clr-gold); }
.col-lg-4:nth-child(3) .service-icon { color: var(--clr-teal); }

.service-title { font-size: 19px; font-weight: 800; color: var(--clr-heading); }
.service-desc { font-size: 14px; color: var(--clr-text); line-height: 1.85; flex: 1; }

.service-features { display: flex; flex-direction: column; gap: 9px; }
.service-features li {
  font-size: 13px; color: var(--clr-text);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
}
.col-lg-4:nth-child(1) .service-features li::before { background: var(--clr-accent); }
.col-lg-4:nth-child(2) .service-features li::before { background: var(--clr-gold); }
.col-lg-4:nth-child(3) .service-features li::before { background: var(--clr-teal); }

.service-card-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--clr-border); }
.service-link {
  font-size: 14px; font-weight: 700; color: var(--clr-accent) !important;
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── قسم المنتجات ───────────────────────────────────────────────── */
.section-products { padding: var(--section-py) 0; background: var(--clr-bg); }

.products-grid { display: flex; flex-direction: column; gap: 18px; }
.product-item {
  display: flex; align-items: center; gap: 20px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 14px; padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}
.product-item:nth-child(1):hover { border-color: var(--clr-border-accent); box-shadow: 0 8px 30px rgba(0,153,204,0.12); transform: translateX(-5px); }
.product-item:nth-child(2):hover { border-color: var(--clr-border-gold); box-shadow: 0 8px 30px rgba(224,144,0,0.12); transform: translateX(-5px); }
.product-item:nth-child(3):hover { border-color: rgba(0,168,150,0.3); box-shadow: 0 8px 30px rgba(0,168,150,0.12); transform: translateX(-5px); }
.product-img-wrap {
  flex-shrink: 0; width: 90px; height: 90px;
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.product-item:hover .product-img-wrap img { transform: scale(1.08); }
.product-info h4 { font-size: 15px; font-weight: 800; color: var(--clr-heading); margin-bottom: 6px; }
.product-info p { font-size: 13px; color: var(--clr-text); line-height: 1.75; margin: 0; }

/* ── شريط الإحصائيات ────────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, #005F99 0%, #0086CC 45%, #00AEEF 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.band-stat { position: relative; }
.band-number {
  font-size: clamp(38px, 5vw, 62px); font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.band-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }

/* ── معرض الأعمال ───────────────────────────────────────────────── */
.section-projects { padding: var(--section-py) 0; background: var(--clr-bg-2); }

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.gallery-feature,
.gallery-tile {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.gallery-feature { border-radius: var(--radius-card); }
.gallery-tile { border-radius: 14px; min-height: 170px; }
.gallery-feature:hover,
.gallery-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border-accent);
}
.gallery-feature:focus-visible,
.gallery-tile:focus-visible {
  outline: 3px solid rgba(0,153,204,0.35);
  outline-offset: 3px;
}
.gallery-media {
  position: relative;
  height: 100%;
  min-height: 205px;
  overflow: hidden;
  background: #08101B;
}
.gallery-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,12,22,0.76), rgba(5,12,22,0.08) 58%, transparent);
  pointer-events: none;
}
.gallery-media--feature {
  min-height: 0;
  height: clamp(260px, 34vw, 360px);
}
.gallery-media img,
.gallery-media video,
.gallery-media iframe {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-media iframe { border: 0; }
.gallery-media video,
.gallery-media iframe { display: block; }
.gallery-tile .gallery-media iframe,
.gallery-tile .gallery-media video { pointer-events: none; }
.gallery-feature:hover .gallery-media img,
.gallery-feature:hover .gallery-media video,
.gallery-tile:hover .gallery-media img,
.gallery-tile:hover .gallery-media video { transform: scale(1.04); filter: brightness(1); }

.gallery-media-badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.94);
  color: var(--clr-heading);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px; font-weight: 800;
  box-shadow: var(--shadow-md);
}
.gallery-open-cue {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(5,12,22,0.42);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.gallery-feature:hover .gallery-open-cue,
.gallery-tile:hover .gallery-open-cue,
.gallery-feature:focus-visible .gallery-open-cue,
.gallery-tile:focus-visible .gallery-open-cue {
  opacity: 1;
  transform: translateY(0);
}

.gallery-feature-info {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 96px;
  z-index: 3;
  color: #fff;
}
.gallery-feature-info h3 {
  margin: 8px 0 6px;
  font-size: clamp(21px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
}
.gallery-feature-info p {
  max-width: 620px;
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.gallery-more-wrap .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gallery-tile-info {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 92px;
  z-index: 3;
}
.gallery-tile-info span {
  display: inline-flex;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.78);
  font-size: 10px;
  font-weight: 800;
}
.gallery-tile-info h4 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}
.project-tag {
  font-size: 10px; font-weight: 700;
  color: var(--clr-accent); background: rgba(0,153,204,0.08);
  border: 1px solid var(--clr-border-accent);
  padding: 3px 12px; border-radius: 100px;
  display: inline-block; width: fit-content;
}
.gallery-feature-info .project-tag {
  color: #DFF7FF;
  background: rgba(0,153,204,0.28);
  border-color: rgba(255,255,255,0.24);
}
.gallery-empty {
  background: rgba(255,255,255,0.72);
  border: 1px dashed var(--clr-border-accent);
  border-radius: var(--radius-card);
  padding: 42px 24px;
  text-align: center;
  color: var(--clr-text-muted);
  font-weight: 700;
}

.gallery-page {
  padding: 140px 0 88px;
  background: var(--clr-bg-2);
  min-height: 70vh;
}
.gallery-page-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 36px;
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-tile--full { min-height: 250px; }

.gallery-modal-open { overflow: hidden; }
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  padding: 28px;
}
.gallery-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,12,22,0.72);
  backdrop-filter: blur(12px);
}
.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(5,12,22,0.38);
}
.gallery-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.94);
  color: var(--clr-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.gallery-modal-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  min-height: 430px;
}
.gallery-modal-media {
  background: #07111F;
  min-height: 430px;
}
.gallery-modal-media img,
.gallery-modal-media video,
.gallery-modal-media iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 0;
  display: block;
}
.gallery-modal-copy {
  padding: 54px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.gallery-modal-copy span {
  width: fit-content;
  color: var(--clr-accent);
  background: rgba(0,153,204,0.08);
  border: 1px solid var(--clr-border-accent);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
}
.gallery-modal-copy h3 {
  margin: 14px 0 10px;
  color: var(--clr-heading);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}
.gallery-modal-copy p {
  margin: 0;
  color: var(--clr-text);
  font-size: 14px;
  line-height: 1.9;
}
.gallery-modal-footer {
  padding: 22px 24px 24px;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-bg-card-2);
}
.gallery-modal-footer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.gallery-modal-footer-head strong {
  color: var(--clr-heading);
  font-size: 15px;
}
.gallery-more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--clr-accent);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.gallery-suggestions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-suggestion {
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  text-align: start;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.gallery-suggestion:hover {
  transform: translateY(-3px);
  border-color: var(--clr-border-accent);
  box-shadow: var(--shadow-sm);
}
.gallery-suggestion-media {
  position: relative;
  display: block;
  height: 105px;
  background: #07111F;
}
.gallery-suggestion-media img,
.gallery-suggestion-media video,
.gallery-suggestion-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
.gallery-suggestion-media > span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(5,12,22,0.56);
  border-radius: 999px;
}
.gallery-suggestion strong {
  display: block;
  padding: 10px 12px 12px;
  color: var(--clr-heading);
  font-size: 12px;
  line-height: 1.5;
}

/* ── قسم العملاء ────────────────────────────────────────────────── */
.section-clients { position: relative; padding: var(--section-py) 0; background: var(--clr-bg); }

.client-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card); padding: 28px 22px; height: 100%; text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.client-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.col-lg-3:nth-child(1) .client-card::before { background: linear-gradient(90deg, var(--clr-accent), #00D4FF); }
.col-lg-3:nth-child(2) .client-card::before { background: linear-gradient(90deg, var(--clr-gold), #FFD060); }
.col-lg-3:nth-child(3) .client-card::before { background: linear-gradient(90deg, var(--clr-violet), var(--clr-accent)); }
.col-lg-3:nth-child(4) .client-card::before { background: linear-gradient(90deg, var(--clr-teal), #00C8FF); }

.client-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.col-lg-3:nth-child(1) .client-card:hover { border-color: var(--clr-border-accent); }
.col-lg-3:nth-child(2) .client-card:hover { border-color: var(--clr-border-gold); }
.col-lg-3:nth-child(3) .client-card:hover { border-color: rgba(91,80,214,0.3); }
.col-lg-3:nth-child(4) .client-card:hover { border-color: rgba(0,168,150,0.3); }

.client-icon {
  width: 58px; height: 58px; margin: 8px auto 18px;
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: transform var(--transition);
}
.col-lg-3:nth-child(1) .client-icon { background: linear-gradient(135deg, rgba(0,153,204,0.1), rgba(0,174,239,0.06)); border: 1px solid var(--clr-border-accent); color: var(--clr-accent); }
.col-lg-3:nth-child(2) .client-icon { background: linear-gradient(135deg, rgba(224,144,0,0.1), rgba(255,184,0,0.06)); border: 1px solid var(--clr-border-gold); color: var(--clr-gold); }
.col-lg-3:nth-child(3) .client-icon { background: linear-gradient(135deg, rgba(91,80,214,0.1), rgba(0,153,204,0.06)); border: 1px solid rgba(91,80,214,0.2); color: var(--clr-violet); }
.col-lg-3:nth-child(4) .client-icon { background: linear-gradient(135deg, rgba(0,168,150,0.1), rgba(0,174,239,0.06)); border: 1px solid rgba(0,168,150,0.2); color: var(--clr-teal); }
.client-card:hover .client-icon { transform: scale(1.1) rotate(-5deg); }

.client-card h5 { font-size: 14px; font-weight: 800; color: var(--clr-heading); margin-bottom: 10px; line-height: 1.5; }
.client-card p { font-size: 13px; color: var(--clr-text); line-height: 1.8; margin: 0; }

/* شريط رؤية 2030 */
.vision-band {
  margin-top: 52px;
  background: linear-gradient(135deg, #EBF7FF, #F0FAFF);
  border: 1px solid var(--clr-border-accent);
  border-radius: var(--radius-card); padding: 32px;
  box-shadow: var(--shadow-md);
}
.vb-inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.vb-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff;
  box-shadow: var(--shadow-accent);
}
.vb-text { flex: 1; min-width: 200px; }
.vb-text strong { display: block; font-size: 17px; font-weight: 800; color: var(--clr-heading); margin-bottom: 5px; }
.vb-text span { font-size: 13px; color: var(--clr-text); }

/* ── قسم التواصل ────────────────────────────────────────────────── */
.section-contact { padding: var(--section-py) 0; background: var(--clr-bg-2); }

.contact-info-block { display: flex; flex-direction: column; gap: 26px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(0,153,204,0.12), rgba(0,174,239,0.07));
  border: 1px solid var(--clr-border-accent);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--clr-accent);
  box-shadow: 0 4px 14px rgba(0,153,204,0.1);
}
.ci-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: var(--clr-text-muted); margin-bottom: 5px; text-transform: uppercase;
}
.ci-value { display: block; font-size: 14px; font-weight: 700; color: var(--clr-heading); }
.ci-text a.ci-value:hover { color: var(--clr-accent); }

/* نموذج التواصل */
.contact-form {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow-md);
}
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label { font-size: 12px; font-weight: 700; color: var(--clr-text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.cf-field input, .cf-field select, .cf-field textarea {
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border-md);
  border-radius: 10px; color: var(--clr-heading); font-family: var(--ff-ar);
  font-size: 14px; padding: 12px 16px; outline: none; width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}
.cf-field select { appearance: none; cursor: pointer; }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--clr-text-muted); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(0,153,204,0.12);
  background: #fff;
}
.cf-field select option { background: #fff; color: var(--clr-heading); }

.cf-submit { position: relative; overflow: hidden; justify-content: center; }
.cf-success {
  display: none; align-items: center; gap: 10px;
  color: var(--clr-accent-deep); font-size: 14px; font-weight: 600;
  margin-top: 16px; padding: 14px 20px;
  background: rgba(0,153,204,0.07); border: 1px solid var(--clr-border-accent); border-radius: 10px;
}
.cf-success.show { display: flex; }

/* ── تذييل الموقع ───────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg-2);
  border-top: 3px solid var(--clr-accent);
  padding: 72px 0 0;
}

/* ألوان الشعار داخل التذييل */
.site-footer .logo-main { color: var(--clr-heading); }
.site-footer .logo-sub  { color: var(--clr-accent); }

.footer-about {
  font-size: 14px; color: var(--clr-text);
  line-height: 1.9; margin-bottom: 24px; max-width: 320px;
}

/* أيقونات التواصل الاجتماعي */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(0,153,204,0.08);
  border: 1px solid rgba(0,153,204,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted); font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: rgba(0,153,204,0.12);
}

/* أعمدة التذييل */
.footer-col-title { font-size: 13px; font-weight: 800; color: var(--clr-heading); margin-bottom: 20px; }

.footer-links li   { margin-bottom: 10px; }
.footer-links a    { font-size: 14px; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-accent); }

/* معلومات التواصل */
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.fc-item { display: flex; align-items: flex-start; gap: 12px; }
.fc-item i { color: var(--clr-accent); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.fc-item a,
.fc-item span { font-size: 14px; color: var(--clr-text); line-height: 1.7; }
.fc-item a:hover { color: var(--clr-accent); }

/* شريط الحقوق */
.footer-bottom {
  margin-top: 56px; padding: 20px 0;
  border-top: 1px solid var(--clr-border-md);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--clr-text-muted);
}
.footer-bottom-en { font-size: 12px; color: var(--clr-text-muted); }

/* ── زر العودة للأعلى ── */
.back-to-top {
  position: fixed; bottom: 32px; left: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  color: #fff; border: none; border-radius: 12px;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-accent);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 12px 30px rgba(0,153,204,0.4); transform: translateY(-2px); }

/* ── استجابة للشاشات ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .about-image-collage { height: 340px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-full-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-media--feature { height: 320px; }
  .gallery-modal-main { grid-template-columns: 1fr; }
  .gallery-modal-copy { padding: 24px; }
  .gallery-modal-media,
  .gallery-modal-media img,
  .gallery-modal-media video,
  .gallery-modal-media iframe { min-height: 320px; }
  .navbar-collapse {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--clr-border);
    border-radius: 14px; padding: 20px; margin-top: 10px;
    box-shadow: var(--shadow-md);
  }
  .navbar-collapse .navbar-nav .nav-link { color: var(--clr-text) !important; }
  .navbar-collapse .navbar-nav .nav-link:hover { color: var(--clr-accent) !important; background: rgba(0,153,204,0.06); }
}
@media (max-width: 767.98px) {
  :root { --section-py: 64px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-page { padding-top: 118px; }
  .gallery-page-head { flex-direction: column; align-items: flex-start; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-media--feature { height: 280px; }
  .gallery-feature-info { right: 20px; bottom: 22px; left: 20px; }
  .gallery-feature-info p { font-size: 13px; }
  .gallery-tile { min-height: 210px; }
  .gallery-modal { padding: 12px; }
  .gallery-modal-dialog { max-height: calc(100vh - 24px); border-radius: 14px; }
  .gallery-modal-media,
  .gallery-modal-media img,
  .gallery-modal-media video,
  .gallery-modal-media iframe { min-height: 260px; }
  .gallery-modal-copy h3 { font-size: 22px; }
  .gallery-suggestions { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
  .vb-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 18px; left: 18px; }
  .product-item { flex-direction: column; text-align: center; }
  .product-img-wrap { width: 100%; height: 160px; }
}
@media (max-width: 575.98px) {
  .about-image-collage { height: 280px; }
  .collage-secondary { display: none; }
}

/* ── حركات ──────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
