/* Hero Section Full Height */
.produk-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.427), rgba(0,0,0,0.5)), 
                        url('/assets/img/bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -100px;
  padding-top: 100px;
  color: white;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

/* Produk Card */
.produk-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.produk-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.produk-img-container {
  height: 220px;
  overflow: hidden;
}

.produk-img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.produk-card:hover .produk-img-container img {
  transform: scale(1.05);
}

.produk-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.produk-harga .harga-utama {
  font-size: 1.25rem;
}

.produk-harga .harga-diskon {
  font-size: 0.9rem;
}

/* Feature Card */
.feature-card {
  transition: all 0.3s ease;
  background: white;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: #198754 !important;
  color: white !important;
  transform: rotateY(180deg);
}

/* Testimoni Card */
.testimoni-card {
  transition: all 0.3s ease;
  background: white;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Divider */
.divider {
  width: 80px;
  height: 4px;
  opacity: 1;
  border-radius: 2px;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cta-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

/* Animation */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__delay-1s {
  animation-delay: 1s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .produk-hero {
    height: 70vh;
    padding-top: 80px;
  }

  .produk-hero h1 {
    font-size: 2.2rem;
  }

  .produk-img-container {
    height: 180px;
  }
}