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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0d10;
  color: #ffffff;
  line-height: 1.6;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: rgba(7, 8, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo span {
  color: #f5b301;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  color: #ddd;
}

.nav a:hover {
  color: #f5b301;
}

.menu-btn {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 28px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 140px 7% 80px;
  background: #080B0D;
}

.hero-left {
  max-width: 650px;
  z-index: 2;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-video {
  width: 420px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;

  box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    0 0 0 2px rgba(245,179,1,.25);
}

.hero-text {
  font-size: 20px;
  color: #cfcfcf;
  margin-top: 20px;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
  margin-top: 70px;
}

.eyebrow {
  color: #f5b301;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(48px, 8vw, 90px);
  line-height: 0.95;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: #ddd;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
}

.primary {
  background: #f5b301;
  color: #070707;
}

.secondary {
  border: 1px solid white;
  color: white;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f5b301;
  color: #080808;
}

.stats div {
  padding: 32px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.2);
}

.stats h3 {
  font-size: 32px;
  font-weight: 900;
}

.section {
  padding: 100px 7%;
  background: #ffffff;
  color: #111;
}

.section.dark {
  background: #111418;
  color: white;
}

.section-header {
  max-width: 750px;
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: #f3f3f3;
  padding: 34px;
  border-left: 5px solid #f5b301;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: #444;
}

.fleet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0b0d10;
  color: white;
}

.fleet-content {
  padding: 100px 7%;
}

.fleet-content p {
  color: #ccc;
  margin-bottom: 24px;
}

.fleet-content ul {
  margin-left: 20px;
}

.fleet-content li {
  margin-bottom: 10px;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.split p {
  color: #d2d2d2;
  font-size: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  background: #111;
}

.gallery-video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: #111;
}

.quote {
  padding: 100px 7%;
  background: #0b0d10;
}

.quote-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: #15191f;
  padding: 50px;
  border: 1px solid rgba(255,255,255,.08);
}

.contact-info {
  margin-top: 28px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #f5b301;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  background: #0b0d10;
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  font-size: 15px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.full {
  width: 100%;
}

footer {
  padding: 30px 7%;
  text-align: center;
  background: #070707;
  color: #aaa;
}

@media (max-width: 900px) {

  .nav {
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .stats,
  .cards,
  .fleet,
  .split,
  .gallery,
  .quote-box {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: fit-content;
  }

  .gallery img {
    height: 240px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-video {
    max-width: 100%;
  }

}