/* --- HERO SECTION RESET --- */
.hero-eskol {
    /* Gradien hitam di kiri agar teks kontras dengan banner */
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%), url('../img/banner.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 520px; 
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #a855f7; 
}

/* Gabungan pengaturan kotak teks & animasi */
.hero-text-container {
    padding-left: 50px; 
    max-width: 450px;   
    animation: fadeInUp 1s ease-out;
}

.hero-eskol h1 {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 1rem !important;
}

.hero-eskol p.small {
    color: #e9ecef !important;
    letter-spacing: 2px;
    margin-bottom: 0.5rem !important;
}

/* Tombol Eskol */
.btn-eskol {
    background: linear-gradient(45deg, #a855f7, #ec4899) !important;
    color: white !important;
    padding: 12px 25px !important;
    border: none !important;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-eskol:hover {
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
    transform: translateY(-2px);
}

/* Keyframes Animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- LANJUTKAN KODE CATEGORY ITEM DI BAWAH SINI --- */

.wa-floating-btn {
    background: linear-gradient(45deg, #25d366, #128c7e); /* Warna Hijau WA Standar */
    /* ATAU jika ingin senada dengan tema Ungu Anda: */
    /* background: linear-gradient(45deg, #a855f7, #ec4899); */
}