/* ===== SLIDESHOW BASE ===== */
.acm-slideshow .owl-carousel {
  cursor: move;
  padding: 0;
}

/* ===== HEIGHT FIX (AMAN) ===== */
.acm-slideshow .owl-carousel .item {
  position: relative;
  height: 600px;
}

@media (max-width: 480px) {
  .acm-slideshow .owl-carousel .item {
    height: 200px;
  }
}

/* ===== IMAGE ===== */
.acm-slideshow .owl-carousel .item .slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== OVERLAY ===== */
.acm-slideshow .owl-carousel .item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* ===== CONTENT (FIX UTAMA) ===== */
.acm-slideshow .owl-carousel .item .slider-content {
  position: absolute;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  text-align: center;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

/* ===== TITLE ===== */
.acm-slideshow .owl-carousel .item .slider-content .item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
    color: #ffff !important;
}

@media (max-width: 767px) {
  .acm-slideshow .owl-carousel .item .slider-content .item-title {
    font-size: 20px;
  }
}

/* ===== DESC (FIX AGAR TIDAK HILANG DI HP) ===== */
.acm-slideshow .owl-carousel .item .slider-content .item-desc {
  font-size: 16px;
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .acm-slideshow .owl-carousel .item .slider-content .item-desc {
    display: block !important;
    width: 90%;
    font-size: 14px;
  }
}

/* ===== BUTTON ===== */
.btn.btn-primary {
  margin-top: 15px;
}

/* ===== DOT ===== */
.acm-slideshow .owl-carousel .owl-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.acm-slideshow .owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
}

.acm-slideshow .owl-carousel .owl-dots .owl-dot.active span {
  opacity: 1;
}

/* ===== NAV (OPTIONAL) ===== */
.acm-slideshow .owl-carousel .owl-nav div {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.acm-slideshow .owl-carousel .owl-nav .owl-prev {
  left: 10px;
}

.acm-slideshow .owl-carousel .owl-nav .owl-next {
  right: 10px;
}

@media (max-width: 991px) {
  .acm-slideshow .owl-carousel .owl-nav {
    display: none;
  }
}
.acm-slideshow .slider-content,
.acm-slideshow .slider-content * {
  color: #fff !important;
}