/* ═══════════════════════════════════════════════════════════
   AFAQ AL-MUHIT TRANSPORTATION — MAIN STYLESHEET
   Luxury Dark Theme | Gold Accents | Bilingual AR/EN
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #fa0016;
  --gold-lt: #ff6666;
  --gold-dk: #cc0013;
  --navy: #003047;
  --navy-2: #004060;
  --navy-3: #005880;
  --navy-4: #006ba0;
  --white: #f8f4ed;
  --white-dm: #e2dcd1;
  --grey: #8a8fa8;
  --border: rgba(255, 255, 255, 0.2);
  --glass: rgba(0, 48, 71, 0.7);
  --ff-ar: "Aref Ruqaa", "Amiri", "Tajawal", serif;
  --ff-ar2: "Tajawal", sans-serif;
  --ff-en: "Playfair Display", "Barlow", serif;
  --ff-display: "Bebas Neue", sans-serif;
  --radius: 16px;
  --radius-lg: 32px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 6px 32px rgba(250, 0, 22, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-ar);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at top, rgba(0, 48, 71, 0.9) 0%, transparent 50%),
    radial-gradient(
      ellipse at bottom,
      rgba(250, 0, 22, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #000011 0%, var(--navy) 50%, #000022 100%);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
/* Space Animation Elements */
.space-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: shootStar 4s linear infinite;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.shooting-star:nth-child(1) {
  top: 20%;
  left: -5px;
  animation-delay: 0s;
}

.shooting-star:nth-child(2) {
  top: 40%;
  left: -5px;
  animation-delay: 1.5s;
}

.shooting-star:nth-child(3) {
  top: 60%;
  left: -5px;
  animation-delay: 3s;
}

.shooting-star:nth-child(4) {
  top: 80%;
  left: -5px;
  animation-delay: 4.5s;
}

.shooting-star:nth-child(5) {
  top: 15%;
  right: -5px;
  animation-delay: 2s;
  animation-name: shootStarReverse;
}

.shooting-star:nth-child(6) {
  top: 35%;
  right: -5px;
  animation-delay: 3.5s;
  animation-name: shootStarReverse;
}

.shooting-star:nth-child(7) {
  top: 55%;
  right: -5px;
  animation-delay: 5s;
  animation-name: shootStarReverse;
}

.shooting-star:nth-child(8) {
  top: 75%;
  right: -5px;
  animation-delay: 6.5s;
  animation-name: shootStarReverse;
}

@keyframes shootStar {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1.5);
  }
  90% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: translateX(120vw) translateY(60px) scale(0.5);
    opacity: 0;
  }
}

@keyframes shootStarReverse {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1.5);
  }
  90% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: translateX(-120vw) translateY(-60px) scale(0.5);
    opacity: 0;
  }
}

body.lang-en {
  direction: ltr;
  font-family: var(--ff-en);
}

body.lang-en .ar-only {
  display: none !important;
}

body:not(.lang-en) .en-only {
  display: none !important;
}

/* ── UTILITY ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 2270px) {
  .container {
    max-width: 1900px;
  }
}
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ar2);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(250, 0, 22, 0.06);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--ff-ar);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-desc {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 600px;
}

/* Responsive Grids */
.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 24px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Coverage Specific */
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ksa-map {
  width: 100%;
  height: 100%;
}
.grid-regions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
@media (max-width: 350px) {
  .grid-regions {
    grid-template-columns: 1fr;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.pre-inner {
  text-align: center;
}
.pre-logo-wrap {
  position: relative;
  display: inline-block;
}
.pre-truck {
  width: 120px;
  animation: truckBounce 1s ease-in-out infinite;
}
@keyframes truckBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.pre-road {
  width: 100%;
  height: 3px;
  background: var(--navy-3);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.pre-road-line {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: roadScroll 1.2s linear infinite;
}
@keyframes roadScroll {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(350%);
  }
}
.pre-text {
  font-family: var(--ff-ar);
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 20px;
  opacity: 0.8;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(0, 48, 71, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 2270px) {
  .nav-container {
    max-width: 1900px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark svg,
.logo-mark img {
  width: 40px;
  height: 40px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-ar {
  font-family: var(--ff-ar);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}
.logo-en {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--white-dm);
  text-decoration: none;
  font-family: var(--ff-ar2);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  opacity: 0.9;
}

.lang-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--ff-en);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition:
    background var(--transition),
    color var(--transition);
}
.lang-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 0, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 0, 22, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.g1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(250, 0, 22, 0.2) 0%,
    transparent 70%
  );
  animation: glow1 8s ease-in-out infinite;
}
.g2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(
    circle,
    rgba(0, 107, 160, 0.8) 0%,
    transparent 70%
  );
  animation: glow2 10s ease-in-out infinite;
}
@keyframes glow1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 30px) scale(1.1);
  }
}
@keyframes glow2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -20px);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFly var(--dur, 6s) var(--delay, 0s) linear infinite;
}
@keyframes particleFly {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) translateX(var(--dx, 40px));
    opacity: 0;
  }
}

#hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 2;
}

.hero-content .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  direction: ltr;
  flex-wrap: wrap;
}

.hero-content .flex > div:first-child {
  order: 2;
  flex: 1.2;
  text-align: start;
  direction: rtl;
}

body.lang-en .hero-content .flex > div:first-child {
  text-align: start;
  direction: ltr;
}

.hero-content .flex > div:first-child .hero-title,
.hero-content .flex > div:first-child .hero-desc,
.hero-content .flex > div:first-child .hero-btns,
.hero-content .flex > div:first-child .hero-badge {
  text-align: start;
}

body.lang-en .hero-content .flex > div:first-child .hero-title,
body.lang-en .hero-content .flex > div:first-child .hero-desc,
body.lang-en .hero-content .flex > div:first-child .hero-btns,
body.lang-en .hero-content .flex > div:first-child .hero-badge {
  text-align: left;
}

.hero-content .flex > div:last-child {
  order: 1;
  flex: 0 0 45%;
}

.hero-truck-visual {
  order: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 0, 22, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge i {
  font-size: 1rem;
}

.hero-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 24px;
}
.ht-ar {
  font-family: var(--ff-ar);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 0 60px rgba(250, 0, 22, 0.15);
}
.ht-sub {
  font-family: var(--ff-ar);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--gold);
  font-weight: 700;
}
.ht-en {
  font-family: var(--ff-display);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 6px;
  color: var(--grey);
  margin-top: 6px;
}

.hero-desc {
  color: var(--white-dm);
  font-size: 1.1rem;
  margin-bottom: 36px;
  opacity: 0.85;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 56px;
  direction: rtl;
}

body.lang-en .hero-btns {
  direction: ltr;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--ff-ar2);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250, 0, 22, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--ff-ar2);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(250, 0, 22, 0.06);
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(0, 48, 71, 0.75);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.stat {
  flex: 1;
  min-width: 140px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid #8f2b2b;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--gold);
  line-height: 1;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  text-shadow: 0 0 20px rgba(250, 0, 22, 0.2);
}
.stat-plus {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  opacity: 0.9;
}
.stat-label {
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  color: var(--grey);
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.hero-truck-visual {
  width: 100%;
  max-width: 500px;
}
.truck-scene {
  position: relative;
}
.big-truck {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.truck-road {
  height: 24px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--navy-3) 20%,
    var(--navy-3) 80%,
    transparent
  );
  border-top: 2px solid rgba(250, 0, 22, 0.2);
  position: relative;
  overflow: hidden;
}
.road-dashes {
  display: flex;
  gap: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: dashMove 2s linear infinite;
}
.road-dashes span {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 2px;
}
@keyframes dashMove {
  from {
    transform: translateX(0) translateY(-50%);
  }
  to {
    transform: translateX(-100px) translateY(-50%);
  }
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  right: 50%;
  transform: translateX(50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }
  50% {
    transform: translateX(50%) translateY(8px);
  }
}

/* ── TICKER ── */
.ticker-wrap {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--ff-ar2);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ticker-track .sep {
  opacity: 0.5;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
#about {
  background: var(--navy-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
}
.about-inner-box {
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--navy-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.about-svg {
  width: 100%;
  height: 100%;
}

.about-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  color: var(--white);
  z-index: 2;
  animation: cardFloat 5s ease-in-out infinite;
}
.about-card-float i {
  color: var(--gold);
  font-size: 1.1rem;
}
.ac1 {
  top: -20px;
  inset-inline-start: -15px;
  animation-delay: 0s;
  margin-bottom: 14px;
  margin-top: 14px;
}
.ac2 {
  bottom: 30px;
  inset-inline-end: -15px;
  animation-delay: 2.5s;
  margin-bottom: 14px;
  margin-top: 14px;

}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-years-badge {
  position: absolute;
  bottom: -24px;
  inset-inline-start: -15px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}
.ayb-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.ayb-num span {
  font-size: 1.4rem;
  margin-top: 4px;
}
.ayb-text {
  font-family: var(--ff-ar2);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

.about-text .section-title {
  margin-top: 12px;
}
.about-p {
  color: var(--white-dm);
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.85;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.af-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition:
    border-color var(--transition),
    background var(--transition);
}
.af-item:hover {
  border-color: var(--gold);
  background: rgba(250, 0, 22, 0.07);
}
.af-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(250, 0, 22, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.af-icon i {
  color: var(--gold);
  font-size: 1.2rem;
}
.af-item strong {
  display: block;
  color: var(--white);
  font-family: var(--ff-ar2);
  font-weight: 700;
  margin-bottom: 2px;
}
.af-item span {
  color: var(--grey);
  font-size: 0.88rem;
}

/* ── SERVICES ── */
#services {
  background: var(--navy);
}
.services-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  max-width: 800px;
  background: radial-gradient(
    ellipse,
    rgba(250, 0, 22, 0.04) 0%,
    transparent 70%
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    var(--shadow-gold);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 0, 22, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before {
  opacity: 1;
}

.sc-featured {
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%);
}

.sc-icon {
  width: 52px;
  height: 52px;
  background: rgba(250, 0, 22, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sc-icon i {
  color: var(--gold);
  font-size: 1.5rem;
}

.sc-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--ff-display);
  font-size: 3rem;
  color: rgba(250, 0, 22, 0.06);
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .sc-num {
  color: rgba(250, 0, 22, 0.12);
}

.service-card h3 {
  font-family: var(--ff-ar);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sc-tags span {
  background: rgba(250, 0, 22, 0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--ff-ar2);
  font-weight: 600;
}

/* ── FLEET ── */
#fleet {
  background: var(--navy-2);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: start;
}

.fleet-card {
  background: var(--navy-3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.fleet-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.fc-main {
  border-color: rgba(250, 0, 22, 0.3);
}

.fleet-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy);
  font-family: var(--ff-ar2);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.fleet-icon-wrap {
  margin-bottom: 20px;
}
.fleet-icon-wrap svg {
  width: 100%;
  max-width: 220px;
}

.fleet-card h3 {
  font-family: var(--ff-ar);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.fleet-en {
  font-family: var(--ff-en);
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 20px;
}

.fleet-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-dm);
  font-size: 0.9rem;
}
.fleet-specs i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.fleet-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  color: var(--grey);
}
.fleet-origin img {
  border-radius: 3px;
}

.fleet-stat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 200px;
}

.fs-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  transition: border-color var(--transition);
}
.fs-card:hover {
  border-color: var(--gold);
}
.fsc-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-shadow: 0 0 20px rgba(250, 0, 22, 0.2);
}
.fsc-num span {
  font-size: 1.4rem;
  margin-top: 6px;
}
.fsc-label {
  font-family: var(--ff-ar2);
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 4px;
}

.fleet-types {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.fleet-types h4 {
  font-family: var(--ff-ar);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.ft-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  color: var(--white-dm);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.ft-item:last-child {
  border-bottom: none;
}
.ft-item i {
  color: var(--gold);
}

/* ── CLIENTS ── */
#clients {
  background: var(--navy);
}
.clients-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cb-stripe {
  position: absolute;
  width: 200px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.03;
  transform: rotate(15deg);
}
.s1 {
  height: 120%;
  right: 5%;
  top: -10%;
}
.s2 {
  height: 80%;
  left: 10%;
  top: 10%;
  opacity: 0.02;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.client-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.client-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.client-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(250, 0, 22, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
}
.client-icon i {
  color: var(--gold);
  font-size: 1.5rem;
}
.client-card h4 {
  font-family: var(--ff-ar);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.client-card p {
  color: var(--grey);
  font-size: 0.85rem;
}

.brokers-banner {
  background: linear-gradient(
    135deg,
    rgba(250, 0, 22, 0.08) 0%,
    rgba(250, 0, 22, 0.02) 100%
  );
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
.bb-text {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-ar2);
  font-size: 1rem;
  color: var(--white-dm);
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.bb-text i {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.bb-text strong {
  color: var(--gold);
}

/* ── COVERAGE ── */
#coverage {
  background: var(--navy-2);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-text p {
  color: var(--grey);
  margin-bottom: 32px;
}

.coverage-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-ar2);
  font-size: 0.95rem;
  color: var(--grey);
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
  position: relative;
}
.city-item:hover,
.city-item.active {
  color: var(--white);
  border-color: var(--border);
  background: rgba(250, 0, 22, 0.04);
}
.city-item i {
  color: var(--gold);
  font-size: 1rem;
}
.city-pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 16px;
  animation: cityPulse 2s ease-in-out infinite;
}
@keyframes cityPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(250, 0, 22, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(250, 0, 22, 0);
  }
}

.coverage-map-wrap {
  display: flex;
  justify-content: center;
}
.map-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: var(--navy-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 20px;
}
.ksa-map {
  width: 100%;
  height: 100%;
}
.ksa-map text {
  font-size: clamp(10px, 2.5vw, 13px);
}
.map-label {
  position: absolute;
  bottom: 16px;
  right: 0;
  left: 0;
  text-align: center;
  font-family: var(--ff-ar2);
  font-size: 0.8rem;
  color: var(--grey);
}
.pulse-circle {
  animation: mapPulse 2.5s ease-in-out infinite;
}
@keyframes mapPulse {
  0%,
  100% {
    r: 20;
    opacity: 0.2;
  }
  50% {
    r: 28;
    opacity: 0.1;
  }
}

/* ── WHY US ── */
#why {
  background: var(--navy);
}
.why-bg {
  position: absolute;
  inset: 0;
}
.wb-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(250, 0, 22, 0.04) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  height: 220px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}
.wc-front,
.wc-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.wc-front {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.wc-back {
  background: linear-gradient(135deg, var(--navy-4), var(--navy-3));
  border: 1.5px solid var(--gold);
  transform: rotateY(180deg);
}
.why-card:hover .wc-front {
  transform: rotateY(-180deg);
}
.why-card:hover .wc-back {
  transform: rotateY(0);
}

.wc-icon {
  width: 60px;
  height: 60px;
  background: rgba(250, 0, 22, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1.5px solid var(--border);
}
.wc-icon i {
  color: var(--gold);
  font-size: 1.6rem;
}
.wc-front h3 {
  font-family: var(--ff-ar);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.wc-back p {
  color: var(--white-dm);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── CERTS ── */
#certs {
  padding: 60px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
}
.cert-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(250, 0, 22, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon i {
  color: var(--gold);
  font-size: 1.3rem;
}
.cert-text strong {
  display: block;
  color: var(--white);
  font-family: var(--ff-ar2);
  font-weight: 700;
  font-size: 0.9rem;
}
.cert-text span {
  color: var(--grey);
  font-size: 0.8rem;
  direction: ltr;
}

/* ── CONTACT ── */
#contact {
  background: var(--navy);
}
.contact-bg {
  position: absolute;
  inset: 0;
}
.ctbg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(250, 0, 22, 0.06) 0%,
    transparent 70%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.ci-item:hover {
  border-color: var(--gold);
}
.ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(250, 0, 22, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.ci-item strong {
  display: block;
  color: var(--white);
  font-family: var(--ff-ar2);
  font-weight: 700;
  margin-bottom: 4px;
}
.ci-item a,
.ci-item span {
  color: var(--grey);
  font-size: 0.9rem;
  text-decoration: none;
}
.ci-item a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-ar2);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(250, 0, 22, 0.08);
}
.form-group select {
  cursor: pointer;
}
.form-group option {
  background: var(--navy-3);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── FOOTER ── */
#footer {
  background: #060d1a;
}
.footer-top {
  padding: 72px 0 48px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo .logo-mark svg,
.footer-logo .logo-mark img {
  width: 40px;
  height: 40px;
}
.footer-logo .logo-ar {
  font-family: var(--ff-ar);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-logo .logo-en {
  font-family: var(--ff-display);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
}

.footer-desc {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.footer-cr-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-cr-info span {
  font-family: var(--ff-ar2);
  font-size: 0.78rem;
  color: var(--grey);
  opacity: 0.7;
}

.footer-links h5,
.footer-contact h5 {
  font-family: var(--ff-ar);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  font-family: var(--ff-ar2);
}
.footer-links ul a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-contact h5 {
  margin-bottom: 20px;
}
.fc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--ff-ar2);
  font-size: 0.88rem;
  color: var(--grey);
}
.fc-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.fc-item a {
  color: var(--grey);
  text-decoration: none;
  transition: color var(--transition);
}
.fc-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: var(--grey);
  font-family: var(--ff-ar2);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.fb-en {
  font-family: var(--ff-en) !important;
  font-size: 0.75rem !important;
  opacity: 0.6;
}

/* ── FLOAT BUTTONS ── */
.whatsapp-float {
  position: fixed;
  bottom: 82px;
  inset-inline-end: 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.whatsapp-float i {
  font-size: 1.4rem;
}
.whatsapp-float span {
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.phone-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  z-index: 900;
  box-shadow: var(--shadow-gold);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.phone-float i {
  font-size: 1.3rem;
}
.phone-float span {
  font-family: var(--ff-ar2);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.phone-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(250, 0, 22, 0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-stat-col {
    width: auto;
    grid-column: span 2;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .fs-card {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: rgba(0, 48, 71, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  section {
    padding: 72px 0;
  }
  .about-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-content .flex {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: start;
  }
  .hero-truck-visual {
    order: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-stats {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
  .stat {
    flex: 1 1 45%;
    border-inline-end: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-divider {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  .certs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .certs-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .map-container {
    padding: 15px;
    max-width: 350px;
  }
  .map-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .hero-title .ht-ar {
    font-size: 2rem;
  }
  .hero-title .ht-sub {
    font-size: 1.6rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .certs-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .fleet-stat-col {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-img-frame {
    margin: 0 auto;
    width: 100%;
  }
  .ac1,
  .ac2 {
    position: static;
    animation: none;
    width: 100%;
    justify-content: flex-start;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-container {
    padding: 10px;
    max-width: 300px;
    margin: 0 auto;
  }
  .map-label {
    font-size: 0.7rem;
    bottom: 12px;
  }
}

/* ── MULTI-PAGE ADDITIONS ── */
.active-nav {
  color: var(--gold) !important;
}
.active-nav::after {
  width: 100% !important;
}

.page-hero {
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  text-align: start;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 0, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 0, 22, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(250, 0, 22, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: var(--ff-ar2);
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 16px;
}
.page-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.page-breadcrumb span {
  opacity: 0.4;
}
.page-hero h1 {
  font-family: var(--ff-ar);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.page-hero h1 span {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
}
.page-hero h1 br {
  display: none;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-hero-en {
  font-family: var(--ff-display);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  letter-spacing: 6px;
  color: var(--grey);
  display: block;
  margin-top: 8px;
}
.page-hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 20px;
  border-radius: 2px;
}

@media (max-width: 350px) {
  .hero-title .ht-ar {
    font-size: 1.6rem;
  }
  .hero-stats .stat-num {
    font-size: 2rem;
  }
  .stat {
    flex: 1 1 100%;
  }
  .container {
    padding: 0 15px;
  }
  .page-hero h1 {
    font-size: 1.8rem !important;
  }
  .section-title {
    font-size: 1.6rem !important;
  }
  .city-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (min-width: 2270px) {
  html {
    font-size: 18px;
  }
  .container, .nav-container {
    max-width: 2000px;
  }
  .section-title {
    font-size: 4rem;
  }
  .hero-title .ht-ar {
    font-size: 5rem;
  }
}
