/* --- Hero Banner --- */
.parts-hero {
  background: url("/assets/images/hero_service.jpg") no-repeat center
    center/cover;
  height: 450px;
  display: flex;
  align-items: center;
  position: relative;
}

.parts-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* --- SECTION 1: HGP --- */
.hgp-section {
  padding: 5rem 0;
  background-color: #fff;
}

.hgp-box {
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
  text-align: center;
}

.hgp-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--honda-red);
}

.hgp-icon {
  font-size: 2.5rem;
  color: var(--honda-red);
  margin-bottom: 1.5rem;
}

/* --- HGP Catalog Card Style --- */
.hgp-product-card {
  background: white;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
}

.hgp-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--honda-red);
}

.hgp-prod-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid #f9f9f9;
}

.hgp-prod-body {
  padding: 1rem;
}

/* --- SECTION 2: ACCESSORIES --- */
.acc-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.acc-card {
  border: none;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.acc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.acc-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 20px;
  background: #fff;
}

.acc-body {
  padding: 1.5rem;
  text-align: center;
}

/* --- SECTION 3: APPAREL --- */
.apparel-section {
  padding: 5rem 0;
  background-color: #1a1a1a;
  color: white;
  position: relative;
}

.apparel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.apparel-card:hover {
  border-color: var(--honda-red);
  background: rgba(255, 255, 255, 0.1);
}

.apparel-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.apparel-body {
  padding: 1.5rem;
  text-align: center;
}

.section-title-line {
  width: 80px;
  height: 4px;
  background: var(--honda-red);
  margin: 15px auto;
}

/* --- Promo Banner Carousel --- */
.promo-carousel-img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Rasio aspek agar konsisten di berbagai layar */
  aspect-ratio: 21/9;
}

/* Custom Nav Button untuk Carousel ini agar terlihat jelas */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 1.5rem;
  background-size: 50%;
}

/* --- Carousel Inside Collapse --- */
.collapse-carousel-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 21/9; /* Rasio gambar lebar */
}

/* Custom Nav Button Carousel agar terlihat di background terang/gelap */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 1.5rem;
  background-size: 50%;
}
