/* ================= RESET ================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ================= BODY ================= */
body {
  margin: 0;
  background: #0B0D10;
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0B0D10;
  padding: 18px 48px;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  height: 42px;
}

.logo-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}

.sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: #007BFF;
  margin-top: 4px;
}

/* ================= NAV ================= */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #007BFF;
  transition: width 0.35s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */
.hero {
  padding: 160px 48px 80px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      rgba(11, 13, 16, 0.65),
      rgba(11, 13, 16, 0.85)
    ),
    url("images/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: 44px;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: #9CA3AF;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #007BFF;
  color: #007BFF;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #007BFF;
  color: #0B0D10;
}

/* ================= VEHICLES ================= */
.vehicles {
  padding: 80px 48px;
}

.vehicle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: #111318;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #FFFFFF;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.vehicle-card h3 {
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.vehicle-card span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #007BFF;
  margin-bottom: 10px;
}

.vehicle-card p {
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.5;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: #007BFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ================= ABOUT US ================= */
.about {
  padding: 90px 48px;
  background: #0B0D10;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-text p {
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}

/* ================= SHOWROOM SLIDER ================= */
.showroom-slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollShowroom 25s linear infinite;
}

.slider-track img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

@keyframes scrollShowroom {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= CONTACT ================= */
.contact {
  padding: 80px 48px;
  background: #0E1015;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-details a {
  color: #007BFF;
  text-decoration: none;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .header {
    padding: 12px 16px;
    background: rgba(11,13,16,0.95);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: 90px 16px 40px;
    align-items: center;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .vehicles {
    padding: 50px 16px;
  }

  .vehicle-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vehicle-card {
    padding: 18px;
  }

  .vehicle-card:hover {
    transform: none;
    box-shadow: none;
  }

  .about {
    padding: 60px 16px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .slider-track img {
    width: 220px;
    height: 150px;
  }

  .contact {
    padding: 50px 16px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-map iframe {
    height: 260px;
  }
}