:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #101010;
  --panel-soft: #171717;
  --text: #f7f7f4;
  --muted: #c9c9c4;
  --subtle: #8d8d88;
  --red: #ed1111;
  --red-dark: #9d0808;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(7, 7, 7, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  font-size: 18px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 900;
}

.header-cta {
  justify-self: end;
  padding: 0 20px;
  background: var(--red);
  color: white;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 79px;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  padding: 18px 24px;
  background: #090909;
  color: var(--muted);
  font-weight: 800;
}

.mobile-nav.open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 80px) 48px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.58) 44%, rgba(7, 7, 7, 0.2) 100%),
    linear-gradient(0deg, #070707 0%, rgba(7, 7, 7, 0) 38%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-content {
  max-width: 740px;
  padding-bottom: clamp(190px, 22vh, 250px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 106px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

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

.primary-button,
.secondary-button {
  min-width: 150px;
  padding: 0 22px;
}

.primary-button {
  background: var(--red);
  box-shadow: 0 16px 40px rgba(237, 17, 17, 0.26);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.rental-planner {
  position: absolute;
  left: clamp(18px, 2.3vw, 30px);
  right: clamp(18px, 2.3vw, 30px);
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  background: #f4f4f4;
  color: #080808;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rental-planner label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.rental-planner span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #070707;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rental-planner b {
  color: #c9922b;
  font-size: 10px;
  letter-spacing: 0;
}

.rental-planner select,
.rental-planner input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 5px;
  color: #171717;
  font: inherit;
  font-size: 16px;
}

.rental-planner button {
  min-width: 120px;
  min-height: 58px;
  padding: 0 22px;
  background: #070707;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.rental-planner button:hover {
  background: var(--red);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #0c0c0c;
}

.trust-strip article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(237, 17, 17, 0.7);
  border-radius: 50%;
  color: var(--red);
  font-weight: 900;
}

.trust-strip h2 {
  margin-bottom: 10px;
  font-size: 19px;
}

.trust-strip p,
.section-intro p,
.service-list p,
.showcase-band p {
  color: var(--muted);
  line-height: 1.62;
}

.section-grid,
.services-section,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 80px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 112px;
}

.section-intro.compact {
  position: static;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro h2,
.services-section h2,
.showcase-band h2,
.contact-card h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.vehicle-card.featured {
  grid-column: span 2;
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vehicle-card div {
  padding: 22px;
}

.vehicle-card p {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.vehicle-card span {
  color: var(--muted);
}

.services-section {
  background: #0d0d0d;
  border-block: 1px solid var(--line);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-list article {
  min-height: 270px;
  padding: 30px;
  background: var(--panel);
}

.service-list span {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-weight: 900;
}

.service-list h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.16;
}

.showcase-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 80px);
}

.showcase-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(237, 17, 17, 0.18), rgba(237, 17, 17, 0) 42%),
    #090909;
  border-top: 1px solid var(--line);
}

.contact-card,
.contact-details {
  padding: clamp(26px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.contact-actions a,
.contact-details a,
.contact-details p {
  display: flex;
  align-items: center;
  min-height: 54px;
  margin: 0;
  padding: 0 18px;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-details {
  display: grid;
  align-content: end;
  gap: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  background: #16a34a;
  border-radius: 999px;
  color: white;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(170px, 1fr));
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 80px) 30px;
  color: var(--muted);
  background: #050505;
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer h2 {
  margin: 0;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: var(--text);
}

.footer-brand p {
  max-width: 390px;
  line-height: 1.62;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.back-top {
  color: var(--text);
  font-weight: 800;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 28px;
  color: var(--subtle);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 880px;
    align-items: start;
  }

  .hero::after {
    background:
      linear-gradient(0deg, #070707 0%, rgba(7, 7, 7, 0.2) 48%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.18));
  }

  .rental-planner {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    padding-bottom: 330px;
  }

  .rental-planner button {
    grid-column: 1 / -1;
  }

  .trust-strip,
  .section-grid,
  .service-list,
  .showcase-band,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-intro {
    position: static;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .mobile-nav {
    top: 67px;
  }

  .hero {
    min-height: 980px;
    padding: 104px 18px 36px;
  }

  .hero-content {
    padding-bottom: 510px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(43px, 17vw, 76px);
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .fleet-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .rental-planner {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .rental-planner span {
    font-size: 11px;
  }

  .rental-planner select,
  .rental-planner input,
  .rental-planner button {
    min-height: 52px;
    font-size: 15px;
  }

  .vehicle-card.featured {
    grid-column: span 1;
  }

  .section-grid,
  .services-section,
  .contact-section,
  .showcase-band {
    padding-block: 64px;
  }

  .service-list article {
    min-height: auto;
  }

  .service-list h3 {
    min-height: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }
}
