body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* HEADER LOGO */
.logo-img {
  height: 28px;
  width: auto;
  margin-right: 8px;
  filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.6));
  transition: transform 0.3s ease;
}
.logo-img:hover { transform: scale(1.1); }

/* HERO */
.hero {
  background: url('../images/mazda.jpg') center center/cover no-repeat;
  min-height: 100vh;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero .container {
  position: relative;
  z-index: 2;
}

/* VIDEO & SLIDER */
.video-section video {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}
.carousel-item img {
  max-height: 450px;
  object-fit: cover;
  filter: brightness(90%);
  transition: transform 0.8s ease-in-out;
}
.carousel-item img:hover { transform: scale(1.03); }

/* MAP */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 12px 15px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-img { height: 22px; }
  .hero { min-height: 70vh; }
  .carousel-item img { max-height: 300px; }
  iframe { height: 300px !important; }
}
