/* === LIGHTBOX BASE === */
.modal-content {
  background: #000;
}

.lightbox-topbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  z-index: 20;
  font-size: 14px;
}

.lightbox-actions button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  margin-left: 12px;
  cursor: pointer;
}

/* === IMAGE === */
.lightbox-image {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0;
}

.lightbox-image.show {
  opacity: 1;
}

/* === NAV BUTTON === */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.nav-btn.left { left: 20px; }
.nav-btn.right { right: 20px; }

/* === THUMBNAIL STRIP === */
.thumbnail-strip {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  overflow-x: auto;
}

.thumb {
  height: 60px;
  opacity: .5;
  cursor: pointer;
  border: 2px solid transparent;
  transition: .3s;
}

.thumb.active {
  opacity: 1;
  border-color: #fff;
}

.pricing-section {
  background: #fff;
}

.section-title h2 {
  font-weight: 600;
}

.section-title p {
  color: #6c757d;
}

/* WRAPPER */
.pricing-wrapper {
  display: flex;
  gap: 24px;
}

/* CARD */
.pricing-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0,0,0,.08);
  flex: 1;
  position: relative;
}

.pricing-card h3 {
  color: #ffd851;
  font-size: 36px;
  margin: 16px 0;
}

.pricing-card h3 span {
  font-size: 14px;
  color: #6c757d;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  padding: 6px 0;
}

.pricing-card ul li.muted {
  color: #adb5bd;
  text-decoration: line-through;
}

/* RECOMMENDED BADGE */
.badge-recommended {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd851;
  color: rgb(0, 0, 0);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}

.pricing-card.featured h4 {
  margin-top: 28px;
}


/* BUTTON */
.btn-price {
  background-color: #fff;      /* biar ga transparan */
  color: #000;
  border: 2px solid #ffd851;   /* border kuning */
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-price:hover {
  background: #ffd851;
}

.btn-active {
  background: #ffd851;
  font-weight: 600;
}


/* =====================
   MOBILE MODE (SWIPE)
===================== */
@media (max-width: 991px) {
  .pricing-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .pricing-wrapper::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

/* PANAH HILANG DI HP */
@media (max-width: 991px) {
  .pricing-arrow {
    display: none;
  }
}

.pricing-section {
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.03);
}

.terms-section {
  background: #fff7d8;
}

.terms-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.terms-card:hover {
  transform: translateY(-5px);
}

.terms-card ul li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: flex-start;
}

.terms-card i {
  color: #ffd851;
  margin-right: 12px;
  font-size: 18px;
  margin-top: 2px;
}
