/* CARD DENGAN LOGO WATERMARK */
.card-custom {
  color: white !important;
  width: 100%;
  padding: 25px 20px;

  border-top: 2px solid rgb(35, 83, 115) !important;
  border-left: 2px solid rgb(35, 83, 115) !important;
  border-bottom: 2px solid rgb(35, 134, 110) !important;
  border-right: 2px solid rgb(35, 134, 110) !important;

  box-shadow:
    0 0 15px rgba(35, 74, 117, 0.8),
    0 0 25px rgba(38, 91, 125, 0.7),
    rgba(11, 243, 177, 0.7) 5px 5px,
    rgba(11, 243, 177, 0.6) 10px 10px !important;

  border-radius: 25px 0 25px 0 !important;
  transition: all 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

/* ===== LOGO WATERMARK ===== */
.card-custom::before {
  content: "";
  position: absolute;
  /* place the logo as a decorative element at the bottom-right */
  bottom: 3px;
  right: 3px;
  width: 220px;
  height: 220px;
  /* path is relative to this CSS file: assets/css -> ../../img/koja.png (project root img folder) */
  background: url("../img/koja.png") no-repeat center/contain;
  opacity: 0.35; /* watermark transparency */
  pointer-events: none;
  z-index: 0;
  border-radius: 22px; /* rounded corner similar to sample */
  transform: rotate(0deg);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.06));
}

/* ============ HOVER EFFECT (lebih kuat & jelas) ============ */
.card-custom:hover {
  transform: scale(1.03);
}


/* IMAGE */
.card-custom .card-img {
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.card-custom .card-img img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}


/* CONTENT WRAPPERS */
.card-content-1,
.card-content-2,
.card-content-3 {
  width: 100%;
  text-align: left;
}

/* 1 */
.card-content-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.card-content-1 h2 {
  margin: 0 !important;
  font-size: 1.3rem;
  font-weight: 700;
}

/* 2 */
.card-content-2 {
  display: flex;
  justify-content: space-between;
}

.card-content-2 h3 {
  margin: 0 !important;
  font-size: 1rem;
  font-weight: 600;
}

.card-content-2 span {
  color: #ccc !important;
  font-size: 0.85rem;
}

/* BUTTON */
/* .card-content-3 {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.card-btn {
  padding: 6px 45px !important;
  border: 3px solid blueviolet !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  color: white !important;
  background: transparent !important;
  transition: all 0.35s ease;
}

.card-btn:hover {
  transform: scale(1.1);
  border-color: rgb(238, 103, 238) !important;
} */