body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

header {
  background: #000;
  padding: 15px 0;
}

/* ===== HERO SECTIONS ===== */

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-home {
  background-image: url('images/home/hero.jpg');
}

.hero-small {
  min-height: 45vh;
  display: flex;
  align-items: center;
}

.hero-services {
  background-image: url('images/services/hero.JPG');
}

.hero-fleet {
  background-image: url('images/fleet/hero.JPG');
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

.btn {
  background: gold;
  color: #000;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 10px;
}

.dark {
  background: #000;
  padding: 40px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.card {
  background: #222;
  padding: 20px;
  border-radius: 5px;
}

.form input, .form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
}

footer {
  background: #000;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.contact-box {
  margin-top: 25px;
  padding: 18px;
  background: #0b0b0b;
  border: 1px solid #222;
  border-radius: 8px;
}

.contact-box a {
  color: gold;
  text-decoration: none;
}

.small {
  opacity: 0.8;
  font-size: 14px;
}

/* ===== Mobile fixes ===== */
@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav a {
    margin-left: 0;
    margin-right: 12px;
    display: inline-block;
    padding: 8px 0;
  }

  .hero,
  .hero-small {
    min-height: 55vh;
    padding: 20px 0;
  }

  .hero-content {
    margin-left: 0;
    padding: 20px;
    max-width: 100%;
    background: rgba(0,0,0,0.55);
    border-radius: 8px;
  }

  .cards {grid-template-columns: 1fr;}

  .btn {
    display: inline-block;
    text-align: center;
  }

  .form input,
  .form button {
    font-size: 16px;
  }
}

