/* ============================================================
   SAQR AL BARARI UNITED — صقر البراري المتحدة
   Dark + gold falcon identity · bilingual EN/AR (RTL-ready)
   ============================================================ */

:root {
  /* Color tokens */
  --ink: #0A0E15;
  --ink-2: #0C111A;
  --surface: #10161F;
  --raised: #151C29;
  --line: #222B3B;
  --line-gold: rgba(198, 161, 91, 0.28);
  --gold: #C6A15B;
  --gold-bright: #D9B878;
  --gold-deep: #A5854B;
  --gold-soft: rgba(198, 161, 91, 0.12);
  --text: #EEF1F6;
  --text-2: #AEB6C4;
  --text-3: #8B94A6;
  --success: #4ADE80;
  --danger: #F87171;
  --on-gold: #171204;

  /* Type */
  --font-en: "Archivo", "Segoe UI", sans-serif;
  --font-ar: "Almarai", "Segoe UI", sans-serif;

  /* Rhythm */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 220ms;

  /* Z scale */
  --z-nav: 100;
  --z-menu: 90;

  --nav-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[lang="ar"] body { font-family: var(--font-ar); }

h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--on-gold); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

section { scroll-margin-top: calc(var(--nav-h) + 12px); }

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* Skip link */
.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: -60px;
  z-index: 200;
  background: var(--gold);
  color: var(--on-gold);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus-visible { top: 12px; }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-en);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
html[lang="ar"] .display {
  font-family: var(--font-ar);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
html[lang="ar"] .kicker { letter-spacing: 0; font-size: 0.9rem; }
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section { padding-block: clamp(72px, 10vw, 118px); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  margin-top: var(--s-4);
}
.section-head .lead { color: var(--text-2); margin-top: var(--s-4); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              filter var(--dur) var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn .ico { width: 18px; height: 18px; }

.btn-gold {
  background: var(--gold);
  color: var(--on-gold);
  box-shadow: 0 8px 24px rgba(198, 161, 91, 0.18);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(198, 161, 91, 0.26); }

.btn-ghost {
  border: 1px solid var(--line-gold);
  color: var(--gold-bright);
  background: rgba(210, 172, 83, 0.05);
}
.btn-ghost:hover { background: var(--gold-soft); border-color: var(--gold); transform: translateY(-2px); }

/* Flip directional icons in RTL */
html[dir="rtl"] .flip-rtl { transform: scaleX(-1); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 21, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(10, 14, 21, 0.9); }
.nav-inner { display: flex; align-items: center; gap: var(--s-5); width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; }
.brand-mark { width: 58px; height: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-ar { font-family: var(--font-ar); font-weight: 800; font-size: 1.02rem; color: var(--text); }
.brand-en { font-family: var(--font-en); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav-links a {
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-links a[aria-current="true"] { color: var(--gold-bright); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  direction: ltr; /* keep phone number LTR in both languages */
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-phone:hover { color: var(--gold-bright); border-color: var(--line-gold); }
.nav-phone .ico { width: 16px; height: 16px; color: var(--gold); }

.lang-btn {
  min-height: 44px;
  min-width: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-gold);
  color: var(--gold-bright);
  font-weight: 800;
  font-family: var(--font-ar);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lang-btn:hover { background: var(--gold-soft); transform: translateY(-1px); }
html[lang="ar"] .lang-btn { font-family: var(--font-en); }

.nav-cta { min-height: 44px; padding: 10px 20px; font-size: 0.95rem; }

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.nav-burger .ico { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  z-index: var(--z-menu);
  background: rgba(12, 17, 26, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) clamp(20px, 4vw, 40px) var(--s-6);
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--text-2);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-menu a:hover { background: rgba(255, 255, 255, 0.05); color: var(--text); }
.mobile-menu .btn { margin-top: var(--s-4); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 92px));
  padding-bottom: clamp(40px, 6vw, 72px);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(900px 480px at 78% 14%, rgba(198, 161, 91, 0.12), transparent 62%),
    linear-gradient(180deg, #0B1019 0%, var(--ink) 100%);
}
html[dir="rtl"] .hero {
  background:
    radial-gradient(900px 480px at 22% 14%, rgba(198, 161, 91, 0.12), transparent 62%),
    linear-gradient(180deg, #0B1019 0%, var(--ink) 100%);
}

/* Photographic hero background */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/hero-truck-flipped.jpg");
  background-size: cover;
  background-position: center 62%;
  pointer-events: none;
}
html[dir="rtl"] .hero-photo { background-image: url("../assets/img/hero-truck.jpg"); }
@media (max-width: 768px) {
  .hero-photo { background-image: url("../assets/img/hero-truck-flipped-sm.jpg"); }
  html[dir="rtl"] .hero-photo { background-image: url("../assets/img/hero-truck-sm.jpg"); }
}

/* When a photo hero is active, retire the illustrated scene layers */
.hero--photo .hero-dunes,
.hero--photo .hero-route,
.hero--photo .hero-truck,
.hero--photo .hero-falcon { display: none; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(10, 14, 21, 0.25) 34%, rgba(10, 14, 21, 0.45) 100%),
    linear-gradient(to right, rgba(10, 14, 21, 0.96) 8%, rgba(10, 14, 21, 0.72) 46%, rgba(10, 14, 21, 0.38) 100%);
}
html[dir="rtl"] .hero-photo::after {
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(10, 14, 21, 0.25) 34%, rgba(10, 14, 21, 0.45) 100%),
    linear-gradient(to left, rgba(10, 14, 21, 0.96) 8%, rgba(10, 14, 21, 0.72) 46%, rgba(10, 14, 21, 0.38) 100%);
}

.hero-falcon {
  position: absolute;
  top: 4%;
  inset-inline-end: -8%;
  width: min(58vw, 760px);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}
html[dir="rtl"] .hero-falcon { transform: scaleX(-1); }

.hero-dunes {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hero-truck {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-top: clamp(28px, 4vw, 48px);
  pointer-events: none;
  opacity: 0.9;
}
html[dir="rtl"] .hero-truck { transform: scaleX(-1); }
@media (max-width: 1024px) {
  .hero-truck { display: none; }
}

.hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}
.hero-route .route-path {
  stroke-dasharray: 8 10;
  animation: routeDash 26s linear infinite;
}
@keyframes routeDash { to { stroke-dashoffset: -720; } }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: 100%;
}
.hero-grid > div:first-child { max-width: 680px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-gold);
  background: rgba(210, 172, 83, 0.07);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.82rem;
}
.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero h1 {
  margin-top: var(--s-5);
  font-size: clamp(2.6rem, 6.4vw, 4.9rem);
}
.hero h1 .gold-line {
  display: block;
  color: var(--gold);
}

.hero-sub {
  margin-top: var(--s-5);
  color: var(--text-2);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  max-width: 56ch;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s-6); }

/* Quote card */
.quote-card {
  position: relative;
  background: linear-gradient(180deg, rgba(21, 28, 41, 0.92), rgba(16, 22, 31, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gold);
}
.quote-card h3 { font-size: 1.25rem; font-weight: 800; }
.quote-card .hint { color: var(--text-3); font-size: 0.9rem; margin-top: 6px; }
.quote-card form { display: flex; flex-direction: column; gap: 14px; margin-top: var(--s-5); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 0.88rem; color: var(--text-2); }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210, 172, 83, 0.18);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23C6A15B' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-inline-end: 40px;
}
html[dir="rtl"] .field select { background-position: left 14px center; }
.field .error-msg { display: none; color: var(--danger); font-size: 0.83rem; font-weight: 600; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .error-msg { display: block; }

.form-note { color: var(--text-3); font-size: 0.88rem; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: var(--success);
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
}
.form-success.show { display: flex; }

/* ---------- Hero stats ---------- */
.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 3vw, 36px);
  margin-top: clamp(24px, 4vw, 48px);
}
.stat .stat-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  direction: ltr;
}
html[dir="rtl"] .stat .stat-num { text-align: end; }
.stat .stat-label { color: var(--text-3); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Trust strip ---------- */
.trust {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  padding-block: var(--s-6);
}
.trust-inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; }
.trust-label { color: var(--text-3); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }
html[lang="ar"] .trust-label { letter-spacing: 0; font-size: 0.95rem; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--surface);
}
.badge .ico { width: 15px; height: 15px; color: var(--gold); }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 28px); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.8vw, 34px);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: var(--s-5);
}
.service-icon .ico { width: 28px; height: 28px; }

.card h3 { font-size: 1.3rem; font-weight: 800; }
.card .card-desc { color: var(--text-2); margin-top: var(--s-3); font-size: 0.97rem; }

.feature-list { margin-top: var(--s-5); display: flex; flex-direction: column; gap: 11px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-2); font-size: 0.94rem; }
.feature-list .ico { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }

/* Why tiles */
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.tile:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.tile .tile-icon { color: var(--gold); margin-bottom: var(--s-4); }
.tile .tile-icon .ico { width: 30px; height: 30px; }
.tile h3 { font-size: 1.08rem; font-weight: 800; }
.tile p { color: var(--text-2); font-size: 0.92rem; margin-top: var(--s-2); }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.fleet-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.fleet-card:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.fleet-card .ico { width: 44px; height: 34px; color: var(--gold-bright); margin-bottom: 14px; }
html[dir="rtl"] .fleet-card .ico { transform: scaleX(-1); }
.fleet-card h3 { font-size: 1rem; font-weight: 800; }
.fleet-card p { color: var(--text-3); font-size: 0.86rem; margin-top: 6px; }
.fleet-note { margin-top: var(--s-6); color: var(--text-3); font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.fleet-note .ico { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------- HSE ---------- */
.hse { background: var(--ink-2); border-block: 1px solid var(--line); }
.hse-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hse-points { margin-top: var(--s-6); display: flex; flex-direction: column; gap: 16px; }
.hse-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-2); }
.hse-points .ico { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.hse-points strong { color: var(--text); display: block; font-size: 0.98rem; }
.hse-points span { font-size: 0.9rem; }

.hse-stat {
  background: linear-gradient(180deg, var(--raised), var(--surface));
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.hse-stat .big {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 1;
  color: var(--gold);
}
.hse-stat .big-label { font-weight: 800; margin-top: 8px; font-size: 1.05rem; }
.hse-stat .big-sub { color: var(--text-3); font-size: 0.88rem; margin-top: 4px; }
.hse-certs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: var(--s-5); }

/* ---------- Photo elements ---------- */
.about-photo {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.action-band {
  position: relative;
  min-height: clamp(300px, 44vw, 460px);
  background-image: url("../assets/img/waste-truck.png");
  background-size: cover;
  background-position: center;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
}
.action-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 21, 0.92) 0%, rgba(10, 14, 21, 0.35) 45%, rgba(10, 14, 21, 0.25) 100%);
}
.action-band .container { position: relative; padding-block: clamp(28px, 4vw, 48px); }
.action-band .band-title { font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 800; }
.action-band .band-sub { color: var(--text-2); margin-top: 6px; max-width: 60ch; font-size: 0.98rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.about-story { color: var(--text-2); font-size: 1.03rem; margin-top: var(--s-5); }
.about-story + .about-story { margin-top: var(--s-4); }
.about-cr { margin-top: var(--s-6); color: var(--text-3); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.about-cr .ico { width: 15px; height: 15px; color: var(--gold); }
.about-cards { display: flex; flex-direction: column; gap: 18px; }
.about-cards .card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.about-cards .card h3 .ico { width: 20px; height: 20px; color: var(--gold); }
.about-cards .card p { color: var(--text-2); margin-top: var(--s-3); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { background: var(--ink-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a.contact-card:hover { border-color: var(--line-gold); transform: translateY(-2px); }
.contact-card .cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid var(--line-gold);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .cc-icon .ico { width: 20px; height: 20px; }
.contact-card h3 { font-size: 0.85rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
html[lang="ar"] .contact-card h3 { letter-spacing: 0; font-size: 0.9rem; }
.contact-card p { font-weight: 700; margin-top: 3px; }
.contact-card .sub { color: var(--text-3); font-weight: 400; font-size: 0.87rem; margin-top: 2px; }
.ltr-num { direction: ltr; unicode-bidi: embed; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ink); padding-top: var(--s-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); }
.footer-brand p { color: var(--text-3); font-size: 0.92rem; margin-top: var(--s-4); max-width: 34ch; }
.footer-logo { width: min(250px, 70%); height: auto; display: block; }
.footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-3); font-weight: 700; margin-bottom: var(--s-4); }
html[lang="ar"] .footer h4 { letter-spacing: 0; font-size: 0.95rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-2); font-size: 0.94rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col li { color: var(--text-2); font-size: 0.94rem; }
.footer-bottom {
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
  padding-block: var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: 0.88rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 560ms var(--ease), transform 560ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2), .fleet-grid > .reveal:nth-child(2) { transition-delay: 70ms; }
.grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3), .fleet-grid > .reveal:nth-child(3) { transition-delay: 140ms; }
.grid-4 > .reveal:nth-child(4), .fleet-grid > .reveal:nth-child(4) { transition-delay: 210ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-falcon { width: 74vw; opacity: 0.04; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .hse-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: none; }
  .brand-ar { font-size: 0.92rem; }
  .brand-en { font-size: 0.5rem; letter-spacing: 0.18em; }
  .brand-mark { width: 46px; }
}

@media (max-width: 400px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-route .route-path { animation: none; }
}
