:root {
  --red: #eb1f29;
  --red-dark: #c4000a;
  --red-soft: #fdecee;
  --black: #0b0b0b;
  --ink: #161616;
  --muted: #6f6a76;
  --line: #e7e5e6;
  --bg: #f6f6f6;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 11, 11, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 20px;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.3;
  margin: 8px 0 14px;
}

.lead {
  color: var(--muted);
  max-width: 720px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(235, 31, 41, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  transform: translateY(-2px);
}

header.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

header.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  color: #f3f3f3;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-only {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 82px;
}

.hero-bg {
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.22) 100%),
    url("../assets/hero.jpg") center / cover no-repeat;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 70px 20px 80px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.2;
  margin: 10px 0 16px;
}

.hero p {
  color: #d8d5dc;
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  color: #fff;
}

.hero-stats span {
  color: #bdb8c4;
  font-size: 0.92rem;
}

.booking-card {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin-bottom: 16px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fafafa;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(235, 31, 41, 0.12);
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.how {
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(11, 11, 11, 0.12);
}

.step img {
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.about-photo {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #111 url("../assets/about.jpg") center / cover no-repeat;
  transition: transform 0.6s ease;
}

.about-photo:hover {
  transform: scale(1.02);
}

.checks {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.checks li {
  list-style: none;
  padding-right: 28px;
  position: relative;
}

.checks li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 11px;
}

.services {
  background: var(--black);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.service {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
  border-color: rgba(235, 31, 41, 0.45);
}

.service h3 {
  margin: 8px 0 10px;
}

.service p {
  color: #b7b3be;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.car-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.car-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #eee;
  transition: transform 0.5s ease;
}

.car-card:hover img {
  transform: scale(1.05);
}

.car-card .meta {
  padding: 20px;
  display: grid;
  gap: 8px;
  flex: 1;
}

.car-card .meta h3 {
  line-height: 1.35;
}

.car-card .meta p {
  color: var(--muted);
}

.car-card .meta .btn {
  margin-top: 8px;
}

.offer {
  background:
    linear-gradient(120deg, rgba(11, 11, 11, 0.82), rgba(11, 11, 11, 0.55)),
    url("../assets/hero.jpg") center / cover no-repeat;
  color: #fff;
  border-radius: 32px;
  padding: 56px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.offer-label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.offer h2 {
  margin: 8px 0 10px;
}

.contact-box {
  background: var(--bg);
  border-radius: 28px;
  padding: 10px 8px;
  display: grid;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.contact-item .icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.contact-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
}

.phone-list {
  display: grid;
  gap: 6px;
}

.phone-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.phone-list a:hover {
  color: var(--red);
}

.site-footer {
  background: var(--black);
  color: #cfcbd6;
  padding: 48px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 360px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m2-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
  width: auto;
  max-width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2px;
  text-align: center;
  white-space: nowrap;
  direction: ltr;
}

.m2-signature__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 16px;
  height: 16px;
  color: #55c8e8;
  filter: drop-shadow(0 0 6px rgba(85, 200, 232, 0.55));
  animation: m2-sig-pulse 3.4s ease-in-out infinite;
}

.m2-signature__mark svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px;
  display: block;
  fill: currentColor !important;
}

@keyframes m2-sig-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.12) rotate(45deg); opacity: 1; }
}

.m2-signature__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  line-height: 0;
  color: inherit;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.m2-signature__logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: inherit;
}

.m2-signature__logo img {
  height: 20px !important;
  width: auto !important;
  max-width: 64px !important;
  display: block;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.m2-signature__tag,
.m2-signature__year {
  display: inline-block;
  flex: none;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}

.m2-signature__tag {
  color: #fff;
  font-size: 14px;
}

.m2-signature__tag strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15px;
}

.m2-signature__year {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.section-head {
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-delay {
  transition-delay: 0.16s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }

.hero-copy.in .hero-stats div {
  animation: statPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy.in .hero-stats div:nth-child(2) { animation-delay: 0.12s; }
.hero-copy.in .hero-stats div:nth-child(3) { animation-delay: 0.22s; }

@keyframes statPop {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .hero-bg {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .steps,
  .service-grid,
  .fleet-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .offer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 16px;
  }

  .menu-btn {
    display: inline-flex;
  }

  .logo img {
    height: 44px;
    max-width: 168px;
    object-fit: contain;
  }

  .nav {
    min-height: 72px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    z-index: 60;
    background: rgba(11, 11, 11, 0.97);
    padding: 18px 22px 24px;
    gap: 16px;
  }

  .mobile-only {
    display: block;
    margin-top: 8px;
  }

  .hero-content,
  .about-grid,
  .contact-grid,
  .steps,
  .service-grid,
  .fleet-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-bg {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.68) 100%),
      url("../assets/hero-mobile.jpg") center / cover no-repeat;
    animation: none;
  }

  .hero-content {
    padding: 24px 16px 36px;
    gap: 22px;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.85rem;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .hero-stats {
    gap: 14px 18px;
  }

  .hero-stats strong {
    font-size: 1.3rem;
  }

  .hero-stats span {
    font-size: 0.8rem;
  }

  .booking-card,
  .offer,
  .contact-box {
    border-radius: 20px;
    max-width: 100%;
  }

  .offer {
    padding: 32px 22px;
  }

  .section {
    padding: 52px 0;
  }

  .footer-top {
    gap: 22px;
    padding-bottom: 24px;
  }

  .m2-signature {
    gap: 8px 10px;
    flex-wrap: wrap;
    white-space: normal;
  }
}
