* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #0b1220;
  color: #e5e7eb;
}

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(15,23,42,0.95);
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.logo span {
  color: #3b82f6;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.nav-buttons .btn {
  margin-left: 10px;
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn.primary {
  background: #3b82f6;
  color: white;
}

.btn.ghost {
  border: 1px solid #3b82f6;
  color: #e5e7eb;
}

/* HERO */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(to bottom, rgba(11,18,32,.85), rgba(11,18,32,.95)),
    url("https://11cf857.netsolhost.com/src/assets/hero-trucks.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content {
  max-width: 800px;
}

.badge {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  margin: 0 0 20px;
}

.hero h1 span {
  color: #3b82f6;
}

.hero p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 650px;
}

.hero-buttons {
  margin-top: 30px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.stats div {
  text-align: center;
}

.stats strong {
  font-size: 28px;
  color: #60a5fa;
}

/* SECTIONS */
.section {
  padding: 80px 40px;
  text-align: center;
}

.section.dark {
  background: #020617;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section p {
  max-width: 800px;
  margin: auto;
  color: #cbd5e1;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  padding: 30px;
  border-radius: 8px;
  background: #0f172a;
  font-weight: 600;
}

.card.light {
  background: #111827;
}

/* CONTACT */
.contact-info {
  margin: 25px 0;
}

.contact-info a {
  color: #60a5fa;
}

.form {
  max-width: 500px;
  margin: auto;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: none;
}

/* FOOTER */
footer {
  background: #020617;
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #94a3b8;
}