/* ===== ROOT ===== */
:root {
  --navy: #1e3a5f;
  --navy-dark: #152b47;
  --navy-light: #2a4f80;
  --orange: #e07b2a;
  --orange-light: #f0952e;
  --bg: #f5f3ee;
  --bg2: #ffffff;
  --card: #ffffff;
  --text: #2c2c2c;
  --muted: #6b7280;
  --border: #e5e0d8;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(30,58,95,0.08);
  --shadow-lg: 0 12px 48px rgba(30,58,95,0.14);
  --transition: 0.3s ease;
}

/* ===== INTRO ANIMATION ===== */
body.loading { overflow: hidden; }

.intro-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.intro-screen.hide {
  opacity: 0; visibility: hidden; pointer-events: none;
}

.intro-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  text-align: center;
}

/* اللوجو */
.intro-logo {
  width: 130px; height: 130px; object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.1), 0 16px 48px rgba(0,0,0,0.3);
  animation: introLogoIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes introLogoIn {
  from { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* النص */
.intro-text { animation: introFadeUp 0.6s 0.5s ease both; }
@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900; color: #fff;
  font-family: 'Cairo', sans-serif;
  line-height: 1.2;
}
.intro-sub {
  font-size: 16px; color: rgba(255,255,255,0.55);
  font-family: 'Cairo', sans-serif; margin-top: 4px;
}

/* شريط التحميل */
.intro-bar-wrap {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px; overflow: hidden;
  animation: introFadeUp 0.4s 0.8s ease both;
}
.intro-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  animation: loadBar 1.6s 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loadBar {
  0%   { width: 0; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* الجملة التسويقية */
.intro-tagline {
  font-size: 14px; color: var(--orange-light);
  font-family: 'Cairo', sans-serif; font-weight: 600;
  letter-spacing: 1px;
  animation: introFadeUp 0.5s 1s ease both;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; scroll-margin-top: 72px; }
.accent { color: var(--orange); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--navy); line-height: 1.3; }
.section-sub { font-size: 17px; color: var(--muted); margin-top: 14px; max-width: 580px; margin-left: auto; margin-right: auto; }

.label {
  display: inline-block;
  background: rgba(224,123,42,0.1);
  color: var(--orange);
  font-size: 15px; font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 22px; border-radius: 50px;
  border: 1px solid rgba(224,123,42,0.3);
  margin-bottom: 16px;
}
.label-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 34px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(224,123,42,0.35);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,123,42,0.45); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 34px; border-radius: 50px;
  border: 2px solid var(--navy);
  cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  padding: 12px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(30,58,95,0.08);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 24px rgba(30,58,95,0.15);
}
.navbar .nav-links a { color: var(--navy); }
.navbar .nav-links a:hover { color: var(--orange); background: rgba(224,123,42,0.08); }
.navbar .burger span { background: var(--navy); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  color: var(--navy); transition: var(--transition);
}
.nav-links a:hover { color: var(--orange); background: rgba(224,123,42,0.08); }
.btn-nav {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
}
.btn-nav:hover { background: var(--orange-light) !important; }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  padding: 8px 16px; border-radius: 50px;
  font-family: 'Cairo', sans-serif; font-size: 13px; font-weight: 700;
  transition: var(--transition); flex-shrink: 0; white-space: nowrap;
}
.nav-phone:hover { background: var(--navy-light); transform: translateY(-1px); }
.nav-phone svg { stroke: #fff; flex-shrink: 0; }
.nav-phone-num { font-size: 13px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(30,58,95,0.07);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.burger:hover { background: var(--navy); }
.burger:hover span { background: #fff; }
.burger span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== REVEAL ANIMATION ===== */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a4f80 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(224,123,42,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
  padding-top: 40px; padding-bottom: 100px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(224,123,42,0.2);
  color: #f0b060;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  padding: 6px 18px; border-radius: 50px;
  border: 1px solid rgba(224,123,42,0.4);
  margin-bottom: 20px; text-transform: uppercase;
}
.hero-text h1 {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900; color: #fff;
  line-height: 1.25; margin-bottom: 20px;
}
.hero-text p {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 540px; margin-bottom: 36px; line-height: 1.9;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-secondary { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-actions .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.hstat { text-align: center; padding: 0 28px; }
.hstat strong { display: block; font-size: 32px; font-weight: 900; color: var(--orange-light); line-height: 1; }
.hstat span { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }
.hstat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hstat:first-child { padding-right: 0; }

/* Hero card stack */
.hero-card-stack {
  position: relative;
  width: 360px; height: 360px;
  margin: 0 auto;
}
.hcard {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-weight: 700; font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hcard-icon { font-size: 22px; }
.hcard-1 { top: 10px; right: 0; }
.hcard-2 { top: 10px; left: 0; }
.hcard-3 { bottom: 10px; right: 0; }
.hcard-4 { bottom: 10px; left: 0; }
.hero-logo-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px; object-fit: contain;
  background: #fff;
  border-radius: 50%; padding: 18px;
  border: none;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.15), 0 12px 40px rgba(0,0,0,0.3);
}

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== READINESS ===== */
.readiness { background: var(--bg); }
.readiness-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ready-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.ready-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.ready-num {
  font-size: 64px; font-weight: 900;
  color: rgba(30,58,95,0.07);
  position: absolute; top: -10px; left: 16px;
  line-height: 1; font-family: 'Cairo', sans-serif;
}
.ready-icon { font-size: 40px; margin-bottom: 16px; }
.ready-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.ready-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== PROBLEMS ===== */
.problems { background: var(--navy); }
.problems .section-header h2 { color: #fff; }
.problems .section-sub { color: rgba(255,255,255,0.65); }
.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 48px; }
.problem-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: var(--transition);
}
.problem-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(224,123,42,0.5); }
.prob-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.problem-card p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; }

.alert-box {
  background: rgba(224,123,42,0.12);
  border: 1px solid rgba(224,123,42,0.4);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.alert-icon { font-size: 36px; flex-shrink: 0; }
.alert-box p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.8; flex: 1; min-width: 240px; }

/* ===== SOLUTIONS ===== */
.solutions { background: var(--bg2); }
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sol-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; gap: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.sol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(30,58,95,0.25); }
.sol-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.sol-content h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.sol-content p { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.sol-list { display: flex; flex-direction: column; gap: 6px; }
.sol-list li { font-size: 13px; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.sol-list li::before { content: '✓'; color: var(--orange); font-weight: 700; }

.sol-cta-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 16px;
  box-shadow: var(--shadow-lg);
}
.sol-cta-card p { color: rgba(255,255,255,0.7); font-size: 14px; }
.sol-cta-card h3 { color: #fff; font-size: 22px; font-weight: 800; }

/* ===== CHECKER ===== */
.checker { background: var(--bg); }
.checker-inner {
  max-width: 760px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}
.checker-header { text-align: center; margin-bottom: 40px; }
.checker-header h2 { font-size: clamp(22px,3vw,34px); font-weight: 900; color: var(--navy); }
.checker-header p { color: var(--muted); margin-top: 10px; }

.checker-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-item {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; padding: 14px 18px;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.check-item:hover { border-color: var(--orange); background: rgba(224,123,42,0.04); }
.check-item input { display: none; }
.check-box {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); background: #fff;
}
.check-item input:checked ~ .check-box {
  background: var(--orange); border-color: var(--orange);
}
.check-item input:checked ~ .check-box::after {
  content: '✓'; color: #fff; font-size: 13px; font-weight: 700;
}
.check-item input:checked ~ .check-text { color: var(--navy); font-weight: 600; }
.check-text { font-size: 15px; color: var(--muted); transition: var(--transition); }

.checker-result { text-align: center; }
.result-bar-wrap {
  height: 8px; background: var(--border); border-radius: 4px;
  margin-bottom: 20px; overflow: hidden;
}
.result-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px; transition: width 0.6s ease;
}
.result-text {
  font-size: 16px; font-weight: 600; color: var(--navy);
  min-height: 28px; margin-bottom: 20px;
}

/* ===== JOURNEY ===== */
.journey { background: var(--bg2); }
.journey-steps { display: flex; gap: 0; position: relative; }
.step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 4px 16px rgba(30,58,95,0.25);
  flex-shrink: 0;
}
.step-line {
  position: absolute; top: 28px; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(270deg, var(--orange), var(--navy));
  z-index: 1;
}
.step-line.last { display: block; }
.step:first-child .step-line { display: none; }
.step-body { margin-top: 20px; padding: 0 12px; }
.step-body h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step-body p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ===== ASPHALT ===== */
.asphalt { background: var(--bg); }
.asphalt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.asphalt-content .label { display: block; margin-bottom: 12px; }
.asphalt-content h2 { font-size: clamp(24px,3vw,38px); font-weight: 900; color: var(--navy); margin-bottom: 18px; line-height: 1.3; }
.asphalt-content p { color: var(--muted); font-size: 16px; line-height: 1.9; margin-bottom: 28px; }
.asphalt-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 32px; }
.asph-item { font-size: 14px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.asph-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.asph-img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 200px; }
.asph-main { grid-column: 1 / -1; height: 280px; }

/* ===== PROJECTS ===== */
.projects { background: var(--bg2); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.tab {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 50px;
  font-family: 'Cairo', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.tab:hover { color: var(--navy); border-color: var(--navy); }
.tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.portfolio-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.portfolio-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1; cursor: pointer; transition: var(--transition);
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,58,95,0.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .port-overlay { opacity: 1; }
.port-overlay span {
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
}
.portfolio-item.hidden { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 10px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.12); border: none;
  color: #fff; font-size: 28px; cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); }
.lb-close { top: 20px; left: 20px; font-size: 16px; }
.lb-prev { right: 20px; top: 50%; transform: translateY(-50%); font-size: 32px; }
.lb-next { left: 20px; top: 50%; transform: translateY(-50%); font-size: 32px; }

/* ===== TRUST / PARTNERS ===== */
.trust { background: var(--bg); }
.partners-grid-wrap { padding: 8px 0; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 120px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.partner-item:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(224,123,42,0.15);
  transform: translateY(-4px);
}
.partner-item img {
  max-height: 90px; width: auto; max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: var(--transition);
}
.partner-item:hover img { filter: grayscale(0%) opacity(1); }

/* ===== ABOUT PROJECTS ===== */
.about-projects { background: var(--bg2); }
.ap-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.ap-text .label { display: block; margin-bottom: 12px; }
.ap-text h2 { font-size: clamp(26px,3vw,38px); font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.divider-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px; margin-bottom: 28px;
}
.ap-text p { font-size: 16px; color: var(--muted); line-height: 1.95; margin-bottom: 18px; }
.ap-text p strong { color: var(--navy); font-weight: 700; }

.ap-highlights { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.ap-highlight-item { display: flex; align-items: flex-start; gap: 14px; }
.ap-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 7px;
}
.ap-highlight-item p { font-size: 15px; color: var(--text); line-height: 1.7; }
.ap-highlight-item p strong { color: var(--navy); }

.ap-quote {
  background: rgba(30,58,95,0.04);
  border: 1px solid rgba(30,58,95,0.1);
  border-radius: var(--radius);
  padding: 20px 20px 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 8px;
}
.ap-quote-line {
  width: 4px; border-radius: 2px; flex-shrink: 0;
  background: var(--orange); align-self: stretch;
  min-height: 100%;
}
.ap-quote p { font-size: 15px; color: var(--navy); line-height: 1.8; font-style: italic; }
.ap-quote p strong { font-style: normal; color: var(--orange); }

/* Certs */
.certs-title {
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.cert-thumb {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 3/4;
}
.cert-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.cert-thumb:hover img { transform: scale(1.05); }
.cert-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(30,58,95,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.cert-thumb-overlay svg { width: 32px; height: 32px; stroke: #fff; }
.cert-thumb:hover .cert-thumb-overlay { opacity: 1; }
.cert-thumb:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cert-thumb .cert-badge {
  position: absolute; bottom: 8px; right: 8px;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(46,204,113,0.92);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}

.cert-more-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px;
  background: rgba(224,123,42,0.07);
  border: 1px solid rgba(224,123,42,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.cert-more-note span { font-size: 20px; flex-shrink: 0; }
.cert-more-note p { font-size: 13px; color: var(--navy); line-height: 1.6; }

@media (max-width: 1024px) {
  .ap-inner { grid-template-columns: 1fr; }
}

/* ===== CTA / CONTACT ===== */
.cta-section { background: var(--navy); }
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.cta-text h2 { font-size: clamp(24px,3vw,38px); font-weight: 900; color: #fff; margin-bottom: 18px; line-height: 1.3; }
.cta-text p { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.9; margin-bottom: 36px; }
.contact-info-row { display: flex; flex-direction: column; gap: 24px; }
.cinfo {
  display: flex;
  align-items: center;
  gap: 14px;
  direction: rtl;
}
.cinfo-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cinfo-body { display: flex; flex-direction: column; gap: 1px; }
.cinfo-body strong { font-size: 12px; color: var(--orange-light); font-weight: 700; margin-bottom: 2px; }
.cinfo-body p, .cinfo-body a {
  color: rgba(255,255,255,0.85); font-size: 14px;
  line-height: 1.5; text-decoration: none; margin: 0;
}
.cinfo-body a:hover { color: #fff; }

.cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.cta-form h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fg input, .fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-family: 'Cairo', sans-serif; font-size: 14px;
  padding: 12px 16px; border-radius: var(--radius);
  outline: none; transition: var(--transition); resize: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--orange); background: rgba(255,255,255,0.12); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.4); }
.fg input[type="tel"] { direction: rtl; text-align: right; }

/* ===== FOOTER ===== */
.footer { background: #fff; border-top: 1px solid var(--border); scroll-margin-top: 72px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 40px;
  align-items: start;
}
.footer-brand img { height: 64px; margin-bottom: 16px; display: block; }
.footer-desc {
  color: var(--muted); font-size: 13.5px; line-height: 1.9;
  max-width: 300px; margin-bottom: 24px;
}

.footer-contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.ftr-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 50px;
  font-family: 'Cairo', sans-serif; font-size: 13px; font-weight: 700;
  transition: var(--transition);
}
.ftr-wa { background: var(--navy); color: #fff; }
.ftr-wa:hover { background: var(--navy-light); transform: translateY(-2px); }
.ftr-call { background: var(--navy); color: #fff; }
.ftr-call:hover { background: var(--navy-light); transform: translateY(-2px); }

.footer-links-col { padding-top: 4px; }
.footer-links-col h4 {
  color: var(--navy); font-size: 15px; font-weight: 800;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links-col a,
.footer-links-col span {
  display: flex; align-items: flex-start; gap: 6px;
  color: var(--muted); font-size: 13.5px; line-height: 1.6;
  margin-bottom: 10px; transition: var(--transition);
}
.footer-links-col a { text-decoration: none; }
.footer-links-col a:hover { color: var(--orange); padding-right: 4px; }
.footer-links-col span a { color: var(--muted); display: inline; margin: 0; }
.footer-links-col span a:hover { color: var(--orange); }

.footer-legal {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-legal-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.legal-items { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.legal-items span {
  font-size: 12px; color: var(--muted);
  padding: 3px 10px; background: #fff;
  border: 1px solid var(--border); border-radius: 50px;
}
.footer-legal p { font-size: 12px; color: var(--muted); }

/* ===== FLOATING ACTIONS ===== */
.float-actions {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.fab svg { width: 22px; height: 22px; }

/* واتساب */
.fab-wa { background: var(--navy); }
.fab-wa svg { fill: #fff; }
.fab-wa:hover { background: var(--navy-light); }

/* اتصال */
.fab-call { background: var(--navy); }
.fab-call svg { stroke: #fff; fill: none; }
.fab-call:hover { background: var(--navy-light); }

/* أعلى الصفحة */
.fab-top {
  background: var(--navy);
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
}
.fab-top svg { stroke: #fff; }
.fab-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-top:hover { background: var(--navy-light); }

/* ===== CONTACT BUTTONS IN CTA ===== */
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.contact-btns .btn-wa,
.contact-btns .btn-call { flex: 1; justify-content: center; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy-dark); color: #fff;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(30,58,95,0.3);
}
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa:hover { background: var(--navy); transform: translateY(-2px); }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy-dark); color: #fff;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-call:hover { background: var(--navy); transform: translateY(-2px); }

.form-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-wa-form {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy-dark); color: #fff;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); width: 100%; text-align: center;
}
.btn-wa-form svg { flex-shrink: 0; }
.btn-wa-form:hover { background: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .readiness-grid { grid-template-columns: repeat(2,1fr); }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .asphalt-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; right: 0; left: 0;
    background: #fff;
    padding: 16px 20px 20px;
    border-top: 2px solid var(--orange);
    box-shadow: 0 12px 32px rgba(30,58,95,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; width: 100%;
    padding: 14px 18px;
    font-size: 15px; font-weight: 600; color: var(--navy);
    border-radius: 10px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; margin-top: 8px; }
  .nav-links a:hover { background: rgba(224,123,42,0.08); color: var(--orange); }
  .btn-nav {
    display: block; text-align: center;
    border-radius: 50px !important;
    padding: 14px 18px !important;
    border-bottom: none !important;
  }
  .burger { display: flex; }
  .nav-inner { position: relative; }
  .nav-phone-num { display: none; }
  .nav-phone { padding: 8px 12px; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .journey-steps { flex-direction: column; gap: 0; }
  .step {
    flex-direction: row; text-align: right;
    gap: 20px; align-items: flex-start;
    position: relative; padding-bottom: 32px;
  }
  .step:last-child { padding-bottom: 0; }
  .step-num { flex-shrink: 0; position: relative; z-index: 2; }
  .step-body { margin-top: 8px; padding: 0; flex: 1; }
  .step-line {
    display: block !important;
    position: absolute;
    top: 56px; right: 27px;
    width: 2px; height: calc(100% - 56px);
    background: linear-gradient(180deg, var(--orange), var(--navy));
    left: auto;
  }
  .step:last-child .step-line,
  .step-line.last { display: none !important; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .checker-inner { padding: 36px 24px; }
  .alert-box { flex-direction: column; text-align: center; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .legal-items { gap: 10px; }
}
@media (max-width: 540px) {
  .section { padding: 70px 0; }
  .readiness-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .asphalt-services { grid-template-columns: 1fr; }
  .hstat-sep { display: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-legal-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}
