.membership-page .icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.membership-page .custom-basic-card {
  color: white;
  border-radius: 10px; /* rounded-4 */
  padding: 1.5rem;        /* p-4 */
  position: relative;
  background: linear-gradient(to bottom right, #4a658d, #0e1521),
              url('https://www.transparenttextures.com/patterns/black-linen.png');
  background-size: cover;
  background-blend-mode: overlay;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.membership-page .custom-basic-card-2 {
  color: white;
  border-radius: 10px; /* rounded-4 */
  padding: 1.5rem;        /* p-4 */
  position: relative;
  background: linear-gradient(to bottom right, #007f3f, #015e38),
               url('https://www.transparenttextures.com/patterns/black-linen.png');
  background-size: cover;
  background-blend-mode: overlay;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.membership-page .custom-basic-card-3 {
  color: white;
  border-radius: 10px; /* rounded-4 */
  padding: 1.5rem;        /* p-4 */
  position: relative;
 background: linear-gradient(to bottom right, #d27300, #914300),
              url('https://www.transparenttextures.com/patterns/black-linen.png');
  background-size: cover;
  background-blend-mode: overlay;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.membership-page .popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: #004225;
    color: white;
    font-size: 14px;
    padding: 6px 0;
  }
.membership-page .feature-list {
    font-size: 12px;
  }
.membership-page .feature-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    align-items: center;
  }

.membership-page .card {
    transition: box-shadow 0.3s ease;
    border-radius: 10px;
  }

.membership-page .card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.membership-page .popular-card {
    transform: scale(1.05);
    z-index: 2;
  }

.membership-page .popular-card .card {
  border: 2px solid transparent !important;
  background-color: white !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.1s ease !important;
  border-radius: 16px !important;
  z-index: 1 !important;
  position: relative !important;
}

/* Opsional: kalau mau tambah efek hover, tambahkan (bisa juga dihapus) */
.membership-page .popular-card .card:hover {
  border-color: #004225; /* border aja */
  outline: 3px solid #004225;
  /* box-shadow di sini jangan diatur agar tidak override! */
}


  /* Responsif: kembalikan ke ukuran normal di layar kecil */
@media (max-width: 767.98px) {
  .membership-page .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .membership-page .cta-buttons button {
    width: 100%;
  }
}
.membership-page .btn-outline-light:hover {
  color: #004225 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.membership-page .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #004225;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
  }

.membership-page .bg-success {
    background-color: #004225 !important;
  }

.membership-page .rounded-4 {
    border-radius: 1rem;
  }

  @media (max-width: 768px) {
    .membership-page .benefit-icon {
      width: 50px;
      height: 50px;
      font-size: 24px;
    }
  }

.membership-page .btn-pilih-paket {
    color: #004225;
    background-color: transparent;
    border: 1px solid #cfe9dc; /* hijau muda */
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

.membership-page .btn-pilih-paket:hover {
    background-color: #e8f5ec; /* hijau muda untuk hover */
    color: #004225;
  }

.membership-page .btn-pilih-populer {
    background-color: #004225;
    color: #ffffff;
    border: 1px solid #004225;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    width: 100%;
    transition: all 0.3s ease;
  }

.membership-page .btn-pilih-populer:hover {
    background-color: #004225;
    box-shadow: 0 4px 10px rgba(0, 66, 37, 0.4);
    border: 2px solid #004225;
    color: #ffffff;
  }
