* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #0b0f18;
  color: white;
  overflow-x: hidden;
}

/* ================= NAV ================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  position: fixed;
  width: 100%;
  background: #000000dd;
  backdrop-filter: blur(10px);
  z-index: 999;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #d4af37;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.btn {
  background: #d4af37;
  color: black;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7)),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-btn {
  background: #d4af37;
  padding: 14px 30px;
  border-radius: 30px;
  color: black;
  font-weight: 700;
  text-decoration: none;
}

/* ================= STATS ================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 70px 8%;
  background: #111827;
  text-align: center;
  gap: 20px;
}

.stat h2 {
  font-size: 45px;
  color: #d4af37;
}

/* ================= TITLES ================= */
.title {
  text-align: center;
  font-size: 34px;
  margin: 70px 0;
  color: #d4af37;
}

/* ================= GRID ================= */
.services-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 0 8% 70px;
}

/* ================= CARDS ================= */
.card,
.fleet-card {
  background: #161f30;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}

.card:hover,
.fleet-card:hover {
  transform: translateY(-8px);
}

.card i {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 15px;
}

.fleet-card img {
  width: 100%;
  border-radius: 12px;
}

/* ================= FORM ================= */
.quote-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 20px;
}

.Producer {
  
  font-size: 10px;
  text-align: right;

  padding: 10px;
}

input,
textarea {
  padding: 14px;
  border: none;
  border-radius: 10px;
  outline: none;
}

button {
  padding: 14px;
  background: #d4af37;
  border: none;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
}

/* ================= ABOUT ================= */
.Paragraph {
  text-align: center;
  font-size: 20px;
  margin: 50px auto;
  max-width: 900px;
  color: #d4af37;
}

/* ================= ADDRESS ================= */
.address {
  text-align: center;
  font-size: 18px;
  color: #95d437;
}

/* ================= LOADER FIX ================= */
.loader {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
}

.loader::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: stripe 1.2s infinite;
}

@keyframes stripe {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

/* ================= FOOTER ================= */
footer {
  background: #05070c;
  text-align: center;
  padding: 60px;
  margin-top: 80px;
}

.socials {
  margin-top: 20px;
  font-size: 22px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #d4af37;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  nav ul {
    display: none; /* (you can later add hamburger menu) */
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 26px;
  }
}