/* === Reset & Umum === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* === Navbar === */
nav {
  background-color: #e30613; /* Merah Honda */
  color: white;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav .logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
nav ul {
  display: flex;
  list-style: none;
  margin-right: 20px;
  gap: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}
nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* === Section Umum === */
.section {
  padding: 60px 0;
}
.section.bg-white {
  background-color: #f9f9f9;
}
.section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #e30613;
  font-size: 28px;
}

/* === Profil Marketing === */
.profil-content {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.profil-content img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #e30613;
}
.profil-content div h3 {
  margin-bottom: 10px;
  color: #e30613;
}

/* === Carousel Produk === */
.carousel {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
}
.carousel-item {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 800px;
}
.carousel-item.active {
  display: block;
}
.carousel-nav {
  text-align: center;
  margin-top: 10px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot.active,
.dot:hover {
  background-color: #e30613;
}

/* === Carousel Customer (carousel-2) === */
.carousel-2 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 20px 0 15px;
  border-radius: 8px;
}
.carousel-item-2 {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 800px;
  }
.carousel-item-2.active {
  display: block;
}
.carousel-nav-2 {
  text-align: center;
  margin-top: 10px;
}
.dot-2 {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot-2.active,
.dot-2:hover {
  background-color: #e30613;
}

/* === Kontak === */
.kontak-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.kontak-info a {
  color: #25D366;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5px;
}
.kontak-info a:hover {
  text-decoration: underline;
}
.maps {
  flex: 1;
  min-width: 300px;
}

/* === Footer === */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* === Responsif (HP & Tablet) === */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 8px;
    margin-right: 15px;
  }
  .profil-content,
  .kontak-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .profil-content img {
    width: 140px;
    height: 140px;
  }
  .carousel-item,
  .carousel-item-2 {
    max-height: 300px;
  }
  .section {
    padding: 40px 0;
  }
  .section h2 {
    font-size: 24px;
  }
}