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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: #050505;
  color: white;
  line-height: 1.6;
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand img {
  height: 56px;
  background: white;
  border-radius: 10px;
  padding: 4px;
}

.brand strong {
  display: block;
  letter-spacing: 0.8px;
  font-size: 15px;
  text-transform: uppercase;
}

.brand span {
  color: #aaa;
  font-size: 13px;
}

.links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.links a {
  position: relative;
  overflow: hidden;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.links a:hover {
  background: #dc1111;
  border-color: #dc1111;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 17, 17, 0.35);
}

.btn {
  background: #dc1111;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-block;
  transition: 0.25s;
  text-align: center;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.25)),
    url("../images/hero-truck.png") center/cover;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 22px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 0, 0, 0.4);
  background: rgba(220, 17, 17, 0.18);
  color: #ffd1d1;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #dc1111;
  border-radius: 50%;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 24px;
  font-weight: 950;
}

.hero p {
  font-size: 19px;
  max-width: 700px;
  color: #eee;
  margin-bottom: 30px;
}

.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 12px;
}

.outline:hover {
  border-color: #dc1111;
  color: #ff4b4b;
  background: transparent;
}

.logo-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: fadeIn 1s ease both;
}

.logo-card img {
  width: 100%;
  background: white;
  border-radius: 24px;
  padding: 35px;
}

section {
  padding: 85px 22px;
}

.white {
  background: white;
  color: #111;
}

.section-inner {
  max-width: 1200px;
  margin: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.kicker {
  color: #dc1111;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -1.2px;
  font-weight: 950;
}

.lead {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

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

.card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 28px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 17, 17, 0.7);
  box-shadow: 0 20px 50px rgba(220, 17, 17, 0.16);
}

.icon {
  font-size: 36px;
  margin-bottom: 16px;
}

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

.card p {
  color: #bbb;
}

.fleet {
  background: #111;
}

.fleet-text {
  color: #ccc;
  max-width: 760px;
  margin-top: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  transition: 0.25s;
}

.gallery img:hover {
  transform: scale(1.02);
}

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

.location {
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 26px;
}

.location b {
  display: block;
  font-size: 28px;
  margin-top: 8px;
}

.cta {
  background: linear-gradient(135deg, #b50909, #050505);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 34px;
  padding: 55px;
}

.cta-text {
  margin-top: 18px;
  color: #ffe1e1;
  font-size: 18px;
}

.contact-box {
  background: white;
  color: #111;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.contact-box h3 {
  font-size: 28px;
}

.email {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 18px;
  font-weight: 800;
  word-break: break-word;
}

.email:hover {
  border-color: #dc1111;
  color: #dc1111;
}

.check {
  margin: 11px 0;
  color: #555;
}

.check::before {
  content: "✓";
  color: #dc1111;
  font-weight: 900;
  margin-right: 9px;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 30px 20px;
  color: #aaa;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1050px) {
  .nav {
    flex-wrap: wrap;
  }

  .links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 950px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .logo-card {
    display: none;
  }

  .cards,
  .gallery,
  .locations {
    grid-template-columns: 1fr;
  }

  .outline {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .cta {
    padding: 30px;
  }

  .nav-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  header {
    position: static;
  }

  .nav {
    justify-content: center;
    text-align: center;
  }

  .brand {
    justify-content: center;
    min-width: auto;
  }

  .brand img {
    height: 52px;
  }

  .links a {
    font-size: 11px;
    padding: 9px 13px;
  }

  .hero {
    padding-top: 0;
  }

  section {
    padding: 65px 18px;
  }

  .gallery img {
    height: 260px;
  }
}
