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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.5;
}

/* =====================
   HEADER
===================== */
.header {
  padding: 80px 60px 40px;
  text-align: center;
}

.header h1 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1px;
}
/* =====================
   NAVBAR
===================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #0b0b0b, #111, #0b0b0b);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 60px;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.logo span {
  color: #1C69D4;
}

.menu a {
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  color: #f5f5f5 !important;
  text-decoration: none !important;
  margin-left: 36px !important;
  position: relative;
  transition: 0.25s ease !important;
}

.menu a:hover {
  color: #1C69D4 !important;
}

.menu a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -6px !important;
  width: 0% !important;
  height: 2px !important;
  background: linear-gradient(90deg,#1C69D4,#3c8dff) !important;
  transition: 0.25s ease !important;
}

.menu a:hover::after {
  width: 100% !important;
}



.navbar {
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.logo-text span {
  color: #1C69D4;
}


/* =====================
   CARS GRID
===================== */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px;
  padding: 60px;
}

.car-card img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.car-card:hover img {
  transform: scale(1.03);
}

.car-info {
  padding-top: 16px;
}

.series {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666;
}

.car-info h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 8px 0;
}

.price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* =====================
   BUTTON (BMW STYLE)
===================== */
.btn {
  display: inline-block;
  padding: 10px 22px;
  background: #1c69d4;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1553a0;
}

/* =====================
   DETAIL PAGE
===================== */
.back {
  display: inline-block;
  margin: 40px 60px 0;
  text-decoration: none;
  color: #1c69d4;
  font-size: 14px;
}

.detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 60px;
}

.detail img {
  width: 100%;
  border-radius: 8px;
}

.detail-info span {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
}

.detail-info h1 {
  font-size: 36px;
  font-weight: 500;
  margin: 12px 0;
}

.detail-info p {
  font-size: 16px;
  margin: 12px 0;
}

.detail-info h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .detail {
    grid-template-columns: 1fr;
  }

  .header h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .cars-grid {
    padding: 30px;
    gap: 32px;
  }

  .header {
    padding: 50px 30px 20px;
  }

  .detail {
    padding: 30px;
  }

  .back {
    margin: 20px 30px;
  }
}
/* =====================
   CONTACT PROFILE
===================== */

.contact-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px 100px;
}

.contact-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.profile-photo img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.profile-info h2 {
  font-size: 30px;
  font-weight: 600;
}

.profile-info .role {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .contact-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-photo {
    max-width: 220px;
    margin: auto;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url("../img/bmw-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: #fff;
}

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

.hero h1 {
  font-size: 64px;
  letter-spacing: 1px;
}

.tagline {
  font-size: 22px;
  margin-top: 10px;
  opacity: 0.9;
}

.desc {
  margin: 20px 0 40px;
  font-size: 16px;
  opacity: 0.8;
}

.hero-btn {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #1c69d4;
  padding: 14px 34px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0f4fb6;
}

.btn-outline {
  border: 2px solid white;
  padding: 14px 34px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: white;
  color: black;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 80px;
  background: #0b0b0b;
  color: white;
}

.about h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255,255,255,.05);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #1c69d4;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 40px;
  background: linear-gradient(135deg,#0f4fb6,#1c69d4);
  text-align: center;
  color: white;
}

/* =====================
   FLOATING WHATSAPP
===================== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  z-index: 9999;
  transition: all 0.3s ease;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.wa-float svg {
  display: block;
}
/* ===== PRICE LIST PREMIUM ===== */
.pricelist-section {
  padding: 120px 20px 60px;
  background: linear-gradient(to bottom, #f8f9fb, #ffffff);
}

.pricelist-box {
  max-width: 980px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.pricelist-box h1 {
  font-size: 34px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.pricelist-box p {
  color: #666;
  margin-bottom: 25px;
}

.pricelist-image {
  width: 100%;
  max-width: 920px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  margin: 25px auto;
  display: block;
}

.btn-download {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #1c69d4;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-download:hover {
  background: #0f4fb3;
  transform: translateY(-2px);
}
