.sales-section {
  background: url("/img/bgp.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  min-height: 100vh;
  padding: 60px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay gelap transparan */
.sales-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Kontainer isi */
.sales-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6); /* mirip .hero .container */
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  color: #fff;
}

.sales-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sales-link {
  display: inline-block;
  margin: 10px 0 20px 0;
  font-size: 1.2rem;
  color: #facc15;
  font-weight: bold;
  text-decoration: none;
}

.sales-support-text {
  margin: 20px 0 10px;
  font-size: 1.1rem;
}

.sales-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sales-content ul li {
  margin: 8px 0;
  font-size: 1rem;
}

.sales-content ul li::before {
  content: "✓";
  color: #facc15;
  margin-right: 10px;
}

.btn,
.whatsapp-button {
  background-color: #facc15;
  color: #1e3a8a;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-top: 24px;
  display: inline-block;
  font-size: 1.1rem;
}

.btn:hover,
.whatsapp-button:hover {
  background-color: #eab308;
}

/* Gambar Produk */
.sales-image {
  margin-top: 30px;
  z-index: 2;
  position: relative;
}

.sales-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .sales-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .sales-content {
    max-width: 100%;
  }

  .sales-image {
    margin-top: 20px;
  }
}
