:root {
  --navy: #081733;
  --navy-2: #0a234d;
  --blue: #134fc5;
  --yellow: #ffcc24;
  --yellow-2: #ffe284;
  --ink: #101522;
  --muted: #647084;
  --line: rgba(255, 255, 255, 0.14);
  --soft: #f3f6fb;
  --white: #ffffff;
  --footer: #05070d;
  --shadow: 0 24px 70px rgba(8, 23, 51, 0.18);
  --premium-shadow: 0 26px 90px rgba(3, 11, 26, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 204, 36, 0.035), transparent 360px),
    var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 14, 33, 0.9);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 12, 27, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #fff3b8);
  box-shadow: 0 0 30px rgba(255, 204, 36, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.brand-title {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 0 0 26px rgba(255, 201, 40, 0.38);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(3, 11, 26, 0.98) 0%, rgba(8, 23, 51, 0.88) 46%, rgba(8, 23, 51, 0.42) 72%, rgba(255, 204, 36, 0.22) 100%),
    var(--hero-image) center / cover no-repeat;
}

.page-hero {
  min-height: 430px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 84% 20%, rgba(255, 204, 36, 0.36), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
  opacity: 0.58;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.35rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  margin: 22px 0 0;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

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

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 0 30px rgba(255, 201, 40, 0.42);
}

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

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

.route-line {
  position: absolute;
  right: 7%;
  bottom: 16%;
  width: min(520px, 43vw);
  height: 180px;
  border: 2px dashed rgba(255, 204, 36, 0.72);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 80px 0 0;
  opacity: 0.75;
  box-shadow: 0 0 24px rgba(255, 204, 36, 0.24);
  animation: routePulse 2.4s ease-in-out infinite;
}

.route-line span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(255, 204, 36, 0.75);
  animation: routeDot 3.2s linear infinite;
}

.route-line span:nth-child(1) {
  right: 0;
  top: -7px;
}

.route-line span:nth-child(2) {
  right: 42%;
  top: -7px;
  animation-delay: 0.9s;
}

.route-line span:nth-child(3) {
  left: -7px;
  bottom: 0;
  animation-delay: 1.8s;
}

.floating-car {
  position: absolute;
  right: 11%;
  bottom: 10%;
  z-index: 3;
  width: min(390px, 39vw);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.48));
  animation: floatCar 4.5s ease-in-out infinite;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 11, 26, 0.97), rgba(7, 31, 71, 0.96)),
    url("https://images.unsplash.com/photo-1708153672081-29f49d9e0572?auto=format&fit=crop&w=1600&q=85") center / cover fixed;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.image-strip,
.services-grid,
.fleet-grid,
.why-grid,
.contact-grid,
.cities-grid,
.testimonials,
.stats-grid,
.values-grid {
  display: grid;
  gap: 20px;
}

.image-strip {
  grid-template-columns: repeat(5, 1fr);
  margin-top: -72px;
  position: relative;
  z-index: 4;
}

.strip-card,
.image-card,
.service-card,
.city-card,
.contact-card,
.testimonial-card,
.stat-card,
.value-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.strip-card {
  min-height: 190px;
  position: relative;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.strip-card img,
.image-card img,
.service-card img,
.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.strip-card:hover img,
.image-card:hover img,
.service-card:hover img,
.why-card:hover img {
  transform: scale(1.08);
}

.strip-card span,
.image-card span {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #fff1a6);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.strip-card::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.76));
}

.about-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
}

.media-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 23, 51, 0.08);
}

.media-frame img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  padding: 18px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.check-list i {
  color: var(--yellow);
}

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

.service-card {
  color: var(--ink);
  border: 1px solid rgba(8, 23, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(255, 201, 40, 0.25);
  border-color: rgba(255, 204, 36, 0.82);
}

.service-card .thumb {
  height: 174px;
  overflow: hidden;
}

.service-card .body {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 204, 36, 0.08), transparent 62%),
    var(--white);
}

.service-card p,
.contact-card p,
.testimonial-card p,
.value-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

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

.city-card {
  position: relative;
  min-height: 142px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 5px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 243, 255, 0.95)),
    radial-gradient(circle at top right, rgba(255, 204, 36, 0.4), transparent 32%);
  border: 1px solid rgba(8, 23, 51, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.city-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 201, 40, 0.8);
  box-shadow: var(--premium-shadow);
}

.city-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
}

.city-card strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
  color: var(--navy);
}

.city-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.fleet-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(8, 23, 51, 0.05), rgba(255, 204, 36, 0.12));
}

.image-card {
  position: relative;
  min-height: 220px;
  box-shadow: 0 18px 48px rgba(8, 23, 51, 0.15);
}

.image-card.tall {
  grid-row: span 2;
}

.image-card.wide {
  grid-column: span 2;
}

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

.why-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8, 23, 51, 0.88));
}

.why-card .body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

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

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

.stat-card {
  padding: 26px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--line);
}

.stat-number {
  display: block;
  color: var(--yellow);
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
}

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

.testimonial-card,
.contact-card,
.value-card {
  padding: 28px;
  border: 1px solid rgba(8, 23, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover,
.contact-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 36, 0.65);
  box-shadow: var(--premium-shadow);
}

.stars {
  color: var(--yellow);
  margin-bottom: 14px;
}

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

.contact-card i,
.value-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--yellow);
  margin-bottom: 18px;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: stretch;
}

.booking-panel {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 204, 36, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.booking-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 23, 51, 0.08);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.booking-form textarea,
.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(25, 87, 210, 0.1);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--footer);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
  gap: 34px;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--yellow);
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-contact {
  position: fixed;
  bottom: 22px;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.floating-contact.call {
  left: 22px;
  background: var(--blue);
}

.floating-contact.whatsapp {
  right: 22px;
  background: #16a34a;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(0);
  }
  50% {
    opacity: 0.88;
    transform: translateX(-16px);
  }
}

@keyframes routeDot {
  0% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  45% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
}

@media (max-width: 1050px) {
  .nav-menu,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu.is-open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .image-strip,
  .services-grid,
  .fleet-grid,
  .contact-grid,
  .stats-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid,
  .split-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .floating-car,
  .route-line {
    opacity: 0.38;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 690px;
  }

  .page-hero {
    min-height: 360px;
  }

  .hero-content {
    padding: 58px 0 104px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .image-strip,
  .services-grid,
  .fleet-grid,
  .why-grid,
  .cities-grid,
  .contact-grid,
  .testimonials,
  .stats-grid,
  .values-grid,
  .footer-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .image-strip {
    margin-top: 0;
    padding-top: 22px;
  }

  .fleet-grid {
    grid-auto-rows: 235px;
  }

  .image-card.tall {
    grid-row: span 1;
  }

  .image-card.wide {
    grid-column: span 1;
  }

  .booking-form textarea,
  .booking-form .full {
    grid-column: auto;
  }

  .media-frame img {
    min-height: 330px;
  }

  .floating-car {
    width: 62vw;
    right: -20vw;
    bottom: 4%;
  }

  .route-line {
    width: 70vw;
    right: -8vw;
    bottom: 12%;
  }

  .city-card {
    min-height: 128px;
    padding: 20px;
  }
}
