.terms-box ul {
    list-style: disc !important;     /* Memaksa bullet (bulat) muncul */
    list-style-position: inside;  /* Posisi bullet di dalam kotak */
    padding-left: 20px;           /* Kembalikan padding kiri */
    margin-bottom: 1rem;          /* Beri spasi bawah */
}

/* Ini untuk list bernomor (jika Anda menggunakannya) */
.terms-box ol {
    list-style: decimal !important; /* Memaksa nomor muncul */
    list-style-position: inside;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.terms-box li {
    list-style: disc !important;
    margin-bottom: 0.5rem; /* Spasi antar item list */
    font-size: medium;
}

/* image slider */
.hero-swiper {
    width: 100%;
    height: 75vh; /* Tinggi carousel (sesuaikan) */
    position: relative; /* Wajib untuk konten statis */
    background-color: #000;
    background-size: contain; /* UBAH KE 'contain' */
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover; /* UBAH KE 'contain' */
    background-repeat: no-repeat; /* Penting untuk mencegah pengulangan */
    background-position: center;
    background-color: black; /* Opsional: warna background di balik gambar */
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.226) 0%, rgba(255, 255, 255, 0.329) 50%, rgba(255, 255, 255, 0.062) 100%);
    z-index: 2; /* Di atas gambar */
}

.static-content-wrapper {
    position: absolute; 
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10; /* Paling atas */
    max-width: 40%;
    text-align: left;
    pointer-events: auto;
    font-family: "Satisfy", cursive;
}

.static-text {
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 25px;
    pointer-events: none; /* Teks tidak bisa diklik */
}

.carousel-button-container {
     pointer-events: auto;
}

.carousel-button {
    display: inline-block;
    background-color: #d88f64;
    color: white;
    padding: 12px 24px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    pointer-events: auto;
}
.carousel-button:hover {
    background-color: #fccbcb;
    color: white;
}

.capturebuddy-nav li{
    background-color: #fccbcb;
}

@media (max-width: 768px) {

    .hero-swiper {
        height: 45vh; 
    }

    .static-content-wrapper {
        left: 50%; 
        transform: translate(-50%, -50%); 
        
        max-width: 90%; 
        width: 90%;
        text-align: center; 
    }

    .static-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    
    .carousel-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}

.form-control-capturebuddy:focus {
  border-color: #fccbcb; 
  box-shadow: 0 0 0 0.25rem rgba(252, 177, 106, 0.274);
}