:root {
  --bg: #f5f7fa;
  --bg-soft: #eef2f6;
  --surface: #ffffff;
  --text: #152433;
  --muted: #5b6b7a;
  --accent: #c49212;
  --accent-soft: #a6790a;
  --line: rgba(21, 36, 51, 0.1);
  --success: #1f9d63;
  --danger: #d64545;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(21, 36, 51, 0.1);
  --font-display: "Noto Kufi Arabic", "Cairo", sans-serif;
  --font-body: "Cairo", sans-serif;
  --header-h: 76px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 95% -8%, rgba(196, 146, 18, 0.12), transparent 55%),
    radial-gradient(900px 480px at -5% 18%, rgba(70, 130, 170, 0.12), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 45%, #f5f7fa 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-label {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head h2,
.about-copy h2,
.vehicle-copy h3,
.pillar h3,
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.85rem;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #b8860b);
  color: #14110a;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.24);
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(21, 36, 51, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  color: var(--accent);
  flex-shrink: 0;
}

.brand-mark.small {
  width: 40px;
  height: 40px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(196, 146, 18, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 28, 42, 0.35) 0%, rgba(15, 28, 42, 0.55) 42%, rgba(245, 247, 250, 0.96) 100%),
    linear-gradient(90deg, rgba(15, 28, 42, 0.62) 0%, rgba(15, 28, 42, 0.2) 58%, rgba(15, 28, 42, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fff;
}

.hero-brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  color: #f0c14b;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  max-width: 14ch;
  color: #fff;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--accent-soft);
  animation: scrollDot 1.6s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.about-copy strong {
  color: var(--text);
}

.about-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.35), transparent 70%);
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.8s ease;
}

.about-visual:hover img {
  transform: scale(1.04);
}

/* Vision pillars */
.vision {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar {
  padding: 1.6rem 1.4rem 1.8rem;
  border-top: 2px solid var(--accent);
  background: var(--surface);
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pillar-num {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
}

/* Fleet slider */
.fleet .section-head {
  margin-inline: auto;
  text-align: center;
}

.slider {
  position: relative;
  width: min(100% - 2rem, 1100px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  background: #000;
}

.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slide {
  position: relative;
  min-width: 100%;
  margin: 0;
}

.slide img {
  width: 100%;
  height: clamp(260px, 52vw, 520px);
  object-fit: cover;
}

.slide figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-weight: 700;
  font-size: 1.1rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(21, 36, 51, 0.15);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.slider-btn:hover {
  background: var(--accent);
  color: #fff;
}

.slider-btn.prev { right: 0.85rem; }
.slider-btn.next { left: 0.85rem; }

.slider-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Vehicles marketing */
.vehicles .section-head {
  max-width: 700px;
}

.vehicle-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.vehicle-block:last-child {
  margin-bottom: 0;
}

.vehicle-block.reverse .vehicle-media {
  order: 2;
}

.vehicle-block.reverse .vehicle-copy {
  order: 1;
}

.vehicle-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 300px;
  box-shadow: var(--shadow);
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.vehicle-block:hover .vehicle-media img {
  transform: scale(1.05);
}

.vehicle-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.vehicle-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.vehicle-copy li {
  position: relative;
  padding-inline-start: 1.35rem;
  color: var(--text);
}

.vehicle-copy li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.info-block h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.info-block p,
.info-block a {
  margin: 0;
  color: var(--muted);
}

.info-block a[href^="tel"],
.info-block a[href^="mailto"] {
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 1.1rem;
}

.map-link {
  display: inline-flex;
  color: var(--accent-soft) !important;
  font-weight: 700;
  border-bottom: 1px solid rgba(166, 121, 10, 0.35);
  padding-bottom: 2px;
  width: fit-content;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-weight: 700;
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: var(--text);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(196, 146, 18, 0.7);
  box-shadow: 0 0 0 3px rgba(196, 146, 18, 0.15);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  margin: 0.9rem 0 0;
  min-height: 1.4em;
  font-weight: 600;
}

.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2rem;
  background: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  text-align: start;
}

.footer-meta a {
  color: var(--accent-soft);
  font-weight: 700;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

/* Responsive */
@media (max-width: 980px) {
  .about-grid,
  .pillars,
  .vehicle-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .vehicle-block.reverse .vehicle-media,
  .vehicle-block.reverse .vehicle-copy {
    order: initial;
  }

  .about-visual,
  .about-visual img,
  .vehicle-media,
  .vehicle-media img {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 1rem auto;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 68px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-img,
  .slider-track,
  .btn,
  .vehicle-media img,
  .about-visual img {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
