/* ═══════════════════════════════════════════════════════
   IBN ZUMIE CONTRACTING — REFINED STYLESHEET v4.0
   Improvements: hero breathing room · section alternation ·
   typography hierarchy · service cards · why-us spacing ·
   partners real logos · footer 4-col with logo
   ═══════════════════════════════════════════════════════ */

/* ─── CUSTOM FONT ─── */
@font-face {
  font-family: 'DINNextArabic';
  src: url('../fonts/DINNextLTArabic-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DINNextArabic';
  src: url('../fonts/DINNextLTArabic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DINNextArabic';
  src: url('../fonts/DINNextLTArabic-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DINNextArabic';
  src: url('../fonts/DINNextLTArabic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── CSS VARIABLES ─── */
:root {
  /* Brand Colors */
  --green-900: #0d3318;
  --green-800: #1a5c2a;
  --green-700: #1f7033;
  --green-600: #2d7d3a;
  --green-500: #3a9147;
  --green-400: #4caf5c;
  --green-100: #e8f5ea;
  --green-50:  #f2fbf3;
  --red-500:   #c0392b;

  /* Neutrals */
  --charcoal-900: #111827;
  --charcoal-800: #1c2331;
  --charcoal-700: #243040;
  --charcoal-600: #374151;
  --charcoal-400: #6b7280;
  --charcoal-300: #9ca3af;
  --charcoal-200: #e5e7eb;
  --charcoal-100: #f3f4f6;
  --warm-white:   #fafaf8;
  --off-white:    #f4f3ef;  /* slightly warmer, more premium */
  --soft-white:   #f9f8f5;  /* mid-point background */

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
  --shadow-xl: 0 28px 80px rgba(0,0,0,0.18);
  --shadow-green: 0 8px 32px rgba(45,125,58,0.28);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.35s var(--ease);
  --t-slow: 0.55s var(--ease);

  /* Layout */
  --container: 1260px;
  --section-pad: 112px;   /* more generous section padding */
  --section-pad-sm: 72px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DINNextArabic', 'Cairo', 'Tajawal', sans-serif;
  direction: rtl;
  background: var(--warm-white);
  color: var(--charcoal-800);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 44px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--r-md);
  transition: var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--green-600);
  color: #fff;
  padding: 12px 28px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(45,125,58,0.38);
}
.btn--hero {
  background: var(--green-600);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.025rem;
  box-shadow: var(--shadow-green);
  letter-spacing: 0.02em;
}
.btn--hero:hover {
  background: var(--green-800);
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(45,125,58,0.42);
}
.btn--hero-outline {
  background: transparent;
  color: #fff;
  padding: 14px 38px;
  font-size: 1.025rem;
  border: 2px solid rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.btn--hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.btn--submit {
  background: var(--green-600);
  color: #fff;
  padding: 15px 36px;
  font-size: 0.975rem;
  width: 100%;
  margin-top: 8px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-green);
}
.btn--submit:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(45,125,58,0.4);
}
.btn--submit.is-success { background: #16a34a; }

/* ─── SECTION BASE ─── */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--off-white); }

/* Better section header spacing */
.section__header {
  text-align: center;
  margin-bottom: 72px;
}
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.section__tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}
.section__tag--light { color: var(--green-400); }
.section__tag--light::before { background: var(--green-400); }

/* Stronger title hierarchy */
.section__title {
  font-family: 'DINNextArabic', 'Cairo', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 900;
  color: var(--charcoal-900);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.section__title--light { color: #fff; }

/* Subtle body text */
.section__sub {
  font-size: 1.05rem;
  color: var(--charcoal-400);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
}
.section__sub--light { color: rgba(255,255,255,0.52); }
.section__header--light .section__sub { color: rgba(255,255,255,0.52); }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--charcoal-800);
  height: 40px;
  display: flex;
  align-items: center;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__right, .topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__brand { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
}
.topbar__item svg { opacity: 0.5; flex-shrink: 0; }
.topbar__link { transition: color var(--t-fast); }
.topbar__link:hover { color: rgba(255,255,255,0.9); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--charcoal-200);
  transition: box-shadow var(--t-base);
}
.navbar.is-scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  border-bottom-color: transparent;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.navbar__logo img { height: 54px; width: auto; }
.navbar__nav { flex: 1; display: flex; justify-content: center; }
.navbar__links { display: flex; align-items: center; gap: 2px; }
.navbar__link {
  display: block;
  padding: 8px 15px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-700);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  white-space: nowrap;
}
.navbar__link:hover, .navbar__link.is-active {
  color: var(--green-600);
  background: var(--green-100);
}
.navbar__cta { flex-shrink: 0; }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.navbar__toggle:hover { background: var(--charcoal-100); }
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal-700);
  border-radius: 2px;
  transition: var(--t-base);
}
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 950; pointer-events: none; }
.mobile-menu.is-open { pointer-events: all; }
.mobile-menu__backdrop {
  position: absolute; inset: 0;
  background: rgba(17,24,39,0.6);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--t-base);
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 88vw); height: 100%;
  background: #fff; padding: 24px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal-200);
}
.mobile-menu__close {
  width: 40px; height: 40px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal-600);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-menu__close:hover { background: var(--charcoal-100); color: var(--charcoal-900); }
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-menu__link {
  display: block; padding: 13px 16px;
  font-size: 1.05rem; font-weight: 700; color: var(--charcoal-700);
  border-radius: var(--r-md); transition: var(--t-fast);
  border-left: 3px solid transparent;
}
.mobile-menu__link:hover { background: var(--green-50); color: var(--green-600); border-left-color: var(--green-600); }
.mobile-menu__cta { margin-top: 24px; width: 100%; padding: 14px; font-size: 1rem; }

/* ─── HERO — more breathing room ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.3s var(--ease); }
.hero__slide.is-active { opacity: 1; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 8s linear;
}
.hero__slide.is-active .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  /* Slightly cleaner overlay — less greenish, more neutral dark */
  background: linear-gradient(
    140deg,
    rgba(8, 16, 12, 0.74) 0%,
    rgba(8, 16, 12, 0.50) 55%,
    rgba(8, 16, 12, 0.28) 100%
  );
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 38%),
    radial-gradient(ellipse at 95% 5%, rgba(0,0,0,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

/* Hero content — tighter max-width, more vertical space */
.hero__content {
  position: relative; z-index: 10;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-bottom: 130px;
}
.hero__text { max-width: 680px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.07em;
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
}
.hero__dot {
  width: 7px; height: 7px;
  background: var(--green-400); border-radius: 50%;
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Larger, stronger hero title */
.hero__title {
  font-family: 'DINNextArabic', 'Cairo', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.16;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.22);
  transition: opacity 0.4s ease;
}
.hero__title em { font-style: normal; color: var(--green-400); }

/* Tighter, more focused description */
.hero__desc {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,0.80);
  max-width: 600px;
  line-height: 1.88;
  margin-bottom: 44px;
  font-weight: 400;
  transition: opacity 0.4s ease 0.1s;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Stats strip — more spacious */
.hero__stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 72px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 22px 36px;
  backdrop-filter: blur(14px);
  width: fit-content;
}
.hero__stat { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.hero__stat:first-child { padding-right: 0; }
.hero__stat:last-child { padding-left: 0; }
.hero__stat-num {
  font-family: 'DINNextArabic', 'Cairo', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.hero__stat-num sup { font-size: 1.1rem; color: var(--green-400); }
.hero__stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.52); font-weight: 500; letter-spacing: 0.03em; white-space: nowrap; }
.hero__stat-sep { width: 1px; height: 42px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Controls */
.hero__controls {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
  padding: 24px 0 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.44) 0%, transparent 100%);
}
.hero__controls-inner { display: flex; align-items: center; justify-content: space-between; }
.hero__dots { display: flex; gap: 8px; align-items: center; }
.hero__dot-btn {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transition: var(--t-base); border: none;
}
.hero__dot-btn.is-active { background: #fff; width: 28px; border-radius: 4px; }
.hero__arrows { display: flex; align-items: center; gap: 10px; }
.hero__arrow {
  width: 44px; height: 44px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-base);
  backdrop-filter: blur(8px);
}
.hero__arrow:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.55); }
.hero__counter {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.12em; min-width: 52px; text-align: center;
}

/* ─── ABOUT ─── */
/* White background — clean starting section */
.about { background: var(--warm-white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about__visuals { position: relative; height: 580px; }
.about__img-main {
  position: absolute; top: 0; right: 0;
  width: 76%; height: 400px;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease); }
.about__img-main:hover img { transform: scale(1.04); }
.about__img-secondary {
  position: absolute; bottom: 0; left: 0;
  width: 60%; height: 268px;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 5px solid #fff;
}
.about__img-secondary img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease); }
.about__img-secondary:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute; bottom: 72px; right: -28px;
  background: var(--green-600); color: #fff;
  border-radius: var(--r-xl); padding: 22px 28px;
  text-align: center; box-shadow: var(--shadow-lg); z-index: 10;
}
.about__badge-num { display: block; font-family: 'DINNextArabic', 'Cairo', sans-serif; font-size: 3rem; font-weight: 900; line-height: 1; }
.about__badge-num sup { font-size: 1.5rem; }
.about__badge-label { display: block; font-size: 0.78rem; opacity: 0.82; margin-top: 6px; font-weight: 600; letter-spacing: 0.04em; }

/* About typography */
.about__text {
  font-size: 1.02rem;
  color: var(--charcoal-600);
  line-height: 1.92;
  margin-top: 20px;
  margin-bottom: 38px;
}
.about__fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 44px;
}
.about__field {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; font-weight: 600; color: var(--charcoal-700);
  padding: 11px 16px;
  background: var(--green-50); border-radius: var(--r-md);
  border: 1px solid rgba(45,125,58,0.1);
  transition: var(--t-fast);
}
.about__field:hover { background: var(--green-100); border-color: rgba(45,125,58,0.2); }
.about__field-dot { width: 6px; height: 6px; background: var(--green-600); border-radius: 50%; flex-shrink: 0; }
.about__vm { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__vm-card { padding: 26px; border-radius: var(--r-xl); }
.about__vm-card--dark { background: var(--charcoal-800); color: #fff; }
.about__vm-card--light { background: var(--off-white); border: 1px solid var(--charcoal-200); }
.about__vm-icon { width: 42px; height: 42px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.about__vm-card--dark .about__vm-icon { background: rgba(255,255,255,0.1); color: var(--green-400); }
.about__vm-card--light .about__vm-icon { background: var(--green-100); color: var(--green-600); }
.about__vm-title { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.about__vm-card--dark .about__vm-title { color: var(--green-400); }
.about__vm-card--light .about__vm-title { color: var(--green-600); }
.about__vm-text { font-size: 0.875rem; line-height: 1.78; }
.about__vm-card--dark .about__vm-text { color: rgba(255,255,255,0.65); }
.about__vm-card--light .about__vm-text { color: var(--charcoal-600); }

/* ─── SERVICES — refined cards ─── */
/* section--alt gives off-white background — clean alternation */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--charcoal-200);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card--wide { grid-column: 2 / 3; }

/* Consistent image height */
.service-card__img {
  height: 216px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,14,0.58) 0%, transparent 55%);
}
.service-card__num {
  position: absolute; top: 14px; right: 14px;
  font-family: 'DINNextArabic', 'Cairo', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: rgba(255,255,255,0.3); line-height: 1;
}

/* Better padded body */
.service-card__body { padding: 26px 26px 0; flex: 1; }
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--green-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  margin-bottom: 16px;
  transition: var(--t-base);
}
.service-card:hover .service-card__icon { background: var(--green-600); color: #fff; }

/* Cleaner title / shorter desc */
.service-card__title {
  font-size: 0.975rem;
  font-weight: 800;
  color: var(--charcoal-900);
  margin-bottom: 8px;
  line-height: 1.42;
}
.service-card__desc {
  font-size: 0.85rem;
  color: var(--charcoal-400);
  line-height: 1.72;
  /* Clamp to 2 lines for uniformity */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__footer { padding: 14px 26px 24px; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--green-600);
  transition: gap var(--t-fast);
}
.service-card__link:hover { gap: 10px; }

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--charcoal-900);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-800), var(--green-500), var(--green-800));
}
.stats-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(45,125,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-band__grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 68px 0;
  position: relative; z-index: 1;
}
.stats-band__item { display: flex; align-items: center; gap: 20px; padding: 0 56px; }
.stats-band__num {
  font-family: 'DINNextArabic', 'Cairo', sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -0.02em;
}
.stats-band__labels { display: flex; flex-direction: column; gap: 3px; }
.stats-band__main { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.stats-band__sub { font-size: 0.76rem; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.04em; }
.stats-band__sep { width: 1px; height: 56px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ─── WHY US — better spacing ─── */
.why { background: var(--warm-white); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;       /* slightly more gap */
  margin-top: 40px;
}

/* Why item — more padding, cleaner */
.why__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;   /* more breathing room */
  border-radius: var(--r-lg);
  background: var(--soft-white);
  border: 1px solid var(--charcoal-200);
  transition: var(--t-base);
}
.why__item:hover {
  background: var(--green-50);
  border-color: rgba(45,125,58,0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Consistent 44×44 icon */
.why__item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;   /* prevent shrinking */
  background: var(--green-600);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--t-fast);
}
.why__item:hover .why__item-icon { background: var(--green-800); }

/* Wrapper for text to ensure alignment */
.why__item-content { flex: 1; min-width: 0; }
.why__item-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--charcoal-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.why__item-desc {
  font-size: 0.825rem;
  color: var(--charcoal-400);
  line-height: 1.68;
}

/* Visuals collage */
.why__visuals { position: relative; height: 560px; }
.why__img { position: absolute; overflow: hidden; border-radius: var(--r-xl); }
.why__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.why__img:hover img { transform: scale(1.04); }
.why__img--1 { top: 0; left: 0; width: 58%; height: 330px; box-shadow: var(--shadow-lg); z-index: 2; }
.why__img--2 { top: 40px; right: 0; width: 53%; height: 250px; box-shadow: var(--shadow-md); }
.why__img--3 { bottom: 0; left: 56px; width: 52%; height: 210px; box-shadow: var(--shadow-md); }
.why__accent-block {
  position: absolute; bottom: 20px; right: 0;
  width: 42%; height: 170px;
  background: var(--green-600); border-radius: var(--r-xl);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px; box-shadow: var(--shadow-lg); z-index: 5;
}
.why__accent-num { font-family: 'DINNextArabic', 'Cairo', sans-serif; font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1; }
.why__accent-num sup { font-size: 1.4rem; color: rgba(255,255,255,0.7); }
.why__accent-label { font-size: 0.82rem; color: rgba(255,255,255,0.72); text-align: center; margin-top: 8px; font-weight: 600; }

/* ─── PROJECTS ─── */
.projects {
  background: var(--charcoal-800);
  position: relative;
}
.projects::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(45,125,58,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(45,125,58,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.projects__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl); padding: 36px;
  transition: var(--t-base);
  position: relative; overflow: hidden;
}
.project-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.project-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(45,125,58,0.25);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.project-card:hover::after { transform: scaleX(1); }
.project-card__number {
  font-family: 'DINNextArabic', 'Cairo', sans-serif;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,0.05); line-height: 1;
  margin-bottom: 12px; letter-spacing: -0.03em;
}
.project-card__tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  color: var(--green-400); background: rgba(76,175,92,0.12);
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.06em; margin-bottom: 14px;
  border: 1px solid rgba(76,175,92,0.2);
}
.project-card__title {
  font-size: 0.95rem; font-weight: 700;
  color: rgba(255,255,255,0.88); line-height: 1.55; margin-bottom: 24px;
}
.project-card__meta { display: flex; flex-direction: column; gap: 9px; }
.project-card__meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.project-card__meta-item svg { color: var(--green-400); opacity: 0.7; flex-shrink: 0; }
.project-card__meta-item strong { color: rgba(255,255,255,0.7); font-weight: 600; }

/* ─── PARTNERS — real logo grid ─── */
/* section--alt = off-white background */
.partners__logos-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--charcoal-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* 5-column grid, auto-wrapping rows */
.partners__logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-left: 1px solid var(--charcoal-200);
  border-bottom: 1px solid var(--charcoal-200);
  transition: background var(--t-base);
}
/* Remove borders on last column of each row */
.partner-logo:nth-child(5n + 1) { border-left: none; }
/* Remove bottom border on last row (rows 4+: logos 16-19) */
.partner-logo:nth-child(n + 16) { border-bottom: none; }

.partner-logo:hover { background: var(--green-50); }

.partner-logo img {
  height: 50px;
  max-width: 128px;
  width: auto;
  object-fit: contain;
  /* Grayscale by default — professional look */
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter var(--t-base), opacity var(--t-base), transform var(--t-base);
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

/* ─── CONTACT ─── */
.contact { background: var(--warm-white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
}
.contact__company { font-family: 'DINNextArabic', 'Cairo', sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--charcoal-900); margin-bottom: 6px; }
.contact__company-sub { font-size: 0.875rem; color: var(--charcoal-400); margin-bottom: 36px; }
.contact__list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact__list-item { display: flex; align-items: flex-start; gap: 16px; }
.contact__list-icon { width: 44px; height: 44px; background: var(--green-100); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--green-600); flex-shrink: 0; }
.contact__list-label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--charcoal-400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact__list-value { display: block; font-size: 0.925rem; font-weight: 600; color: var(--charcoal-700); }
.contact__location-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--off-white); border: 1px solid var(--charcoal-200); border-radius: var(--r-lg); color: var(--green-600); }
.contact__location-card > div strong { display: block; font-size: 0.925rem; font-weight: 700; color: var(--charcoal-800); margin-bottom: 3px; }
.contact__location-card > div span { font-size: 0.8rem; color: var(--charcoal-400); }

.contact__form-wrap { background: #fff; border-radius: var(--r-xl); padding: 48px; border: 1px solid var(--charcoal-200); box-shadow: var(--shadow-lg); }
.contact__form-title { font-family: 'DINNextArabic', 'Cairo', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--charcoal-900); margin-bottom: 6px; }
.contact__form-sub { font-size: 0.875rem; color: var(--charcoal-400); margin-bottom: 32px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__group--full { grid-column: span 2; margin-bottom: 0; }
.form__label { font-size: 0.8rem; font-weight: 700; color: var(--charcoal-700); letter-spacing: 0.02em; }
.form__label span { color: var(--red-500); margin-left: 2px; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--charcoal-200);
  border-radius: var(--r-md);
  font-family: 'DINNextArabic', 'Cairo', sans-serif;
  font-size: 0.9rem; color: var(--charcoal-800);
  background: var(--warm-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none; direction: rtl;
  appearance: none; -webkit-appearance: none;
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--charcoal-300); }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--green-600); background: #fff;
  box-shadow: 0 0 0 3px rgba(45,125,58,0.12);
}
.form__input.is-error, .form__textarea.is-error {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form__textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: left 14px center; padding-left: 40px; cursor: pointer;
}

/* ─── FOOTER — 4 columns, logo at top of brand col ─── */
.footer {
  border-top: 3px solid var(--green-600);
}
.footer__main {
  background: var(--charcoal-800);
  padding: 80px 0 52px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}

/* Logo link wrapper */
.footer__logo-link {
  display: inline-block;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
}

.footer__logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
  max-width: 300px;
  margin-bottom: 28px;
}

/* Socials */
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 38px; height: 38px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.42);
  transition: var(--t-fast);
}
.footer__social-link:hover { background: var(--green-600); border-color: var(--green-600); color: #fff; }

/* Col titles */
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

/* Footer links */
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: var(--t-fast);
  display: inline-flex; align-items: center; gap: 0;
}
.footer__link:hover { color: var(--green-400); padding-right: 4px; }

/* Contact items in footer */
.footer__contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.82rem; color: rgba(255,255,255,0.44);
  line-height: 1.55;
}
.footer__contact-item svg { color: var(--green-500); flex-shrink: 0; margin-top: 2px; }

/* Bottom bar */
.footer__bottom {
  background: rgba(0,0,0,0.24);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.footer__copy { font-size: 0.77rem; color: rgba(255,255,255,0.28); }
.footer__reg {
  font-size: 0.74rem; color: rgba(255,255,255,0.22);
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* ─── SCROLL REVEAL ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  :root { --section-pad: 88px; }
  .about__grid { gap: 56px; }
  .why__grid { gap: 56px; }
  .contact__grid { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
  .stats-band__item { padding: 0 36px; }
  .partners__logos-grid { grid-template-columns: repeat(4, 1fr); }
  .partner-logo:nth-child(5n + 1) { border-left: 1px solid var(--charcoal-200); }
  .partner-logo:nth-child(4n + 1) { border-left: none; }
  .partner-logo:nth-child(n + 16) { border-bottom: 1px solid var(--charcoal-200); }
  .partner-logo:nth-child(n + 17) { border-bottom: none; }
}

@media (max-width: 960px) {
  .container { padding: 0 28px; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .topbar { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visuals { height: 380px; margin-bottom: 0; }
  .about__img-main { width: 72%; height: 310px; }
  .about__badge { right: 0; bottom: 10px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__visuals { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: 1 / -1; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .stats-band__grid { flex-wrap: wrap; gap: 0; justify-content: center; }
  .stats-band__item { padding: 28px 32px; flex: 1 1 40%; }
  .stats-band__sep:nth-child(4) { display: none; }
  .hero__stats-strip { flex-wrap: wrap; gap: 16px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .partners__logos-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logo:nth-child(4n + 1) { border-left: 1px solid var(--charcoal-200); }
  .partner-logo:nth-child(3n + 1) { border-left: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 20px; }
  .hero__title { font-size: 1.85rem; }
  .hero__desc { font-size: 0.95rem; }
  .hero__actions { gap: 12px; }
  .hero__stats-strip { display: none; }
  .btn--hero, .btn--hero-outline { padding: 13px 26px; font-size: 0.95rem; }
  .services__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer__reg { border-right: none; padding-right: 0; }
  .about__fields { grid-template-columns: 1fr; }
  .about__vm { grid-template-columns: 1fr; }
  .about__img-secondary { display: none; }
  .about__badge { right: 0; }
  .why__items { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .form__group--full { grid-column: 1; }
  .contact__form-wrap { padding: 28px 22px; }
  .stats-band__item { flex: 1 1 100%; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .stats-band__sep { display: none; }
  .section__title { font-size: 1.78rem; }
  .hero__counter { display: none; }
  .partners__logos-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logo:nth-child(3n + 1) { border-left: 1px solid var(--charcoal-200); }
  .partner-logo:nth-child(2n + 1) { border-left: none; }
  .partner-logo:nth-child(n + 16) { border-bottom: 1px solid var(--charcoal-200); }
  .partner-logo:last-child, .partner-logo:nth-last-child(-n+2) { border-bottom: none; }
}
