/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: #0b1c2d;
  border-bottom: 3px solid #f4c20d;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  padding: 20px 0;
  color: #ffffff;
}

.nav {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
}

.nav a {
  color: #ffffff;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
}

.nav a:hover,
.nav a.active {
  background: #f4c20d;
  color: #000;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(
      rgba(11, 28, 45, 0.85),
      rgba(11, 28, 45, 0.85)
    ),
    url("images/car1.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #f4c20d;
}

.hero-text {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: bold;
}

.btn-primary {
  background: #f4c20d;
  color: #000;
}

.btn-primary:hover {
  background: #ddb000;
}

.btn-secondary {
  background: #0b1c2d;
  color: #ffffff;
  border: 2px solid #0b1c2d;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0b1c2d;
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 0;
}

section h2 {
  margin-bottom: 20px;
  color: #0b1c2d;
}

.light-section {
  background: #f7f7f7;
}

/* ===== LISTS ===== */
.services-list,
.why-us-list {
  list-style: none;
  padding-left: 0;
}

.services-list li,
.why-us-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.services-list li::before,
.why-us-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f4c20d;
  font-weight: bold;
}

/* ===== GALLERY ===== */
.gallery {
  background: #f7f7f7;
  text-align: center;
}

.gallery-text {
  margin-bottom: 30px;
  color: #444;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===== CTA SECTION ===== */
.cta {
  background: #0b1c2d;
  color: #ffffff;
  text-align: center;
}

.cta h2 {
  color: #f4c20d;
}

.cta p {
  max-width: 700px;
  margin: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: #0b1c2d;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
  }

  .hero h2 {
    font-size: 28px;
  }

  .logo {
    font-size: 22px;
  }
}