

/* ==========================================
   ANIMASI SCROLL REVEAL (FACILITY)
========================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   STYLING CARD FASILITAS DENGAN GAMBAR
========================================== */
.facility-card {
    overflow: hidden;
    padding: 0; 
}

.facility-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-card:hover .facility-img {
    transform: scale(1.1); 
}

.facility-content {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem; 
}

.icon-overlap {
    position: absolute;
    bottom: -20px;
    left: 24px;
    z-index: 10;
    border: 3px solid white; 
    transition: all 0.4s ease;
}

.facility-card:hover .icon-overlap {
    background-color: #2d6a4f;
    color: white;
    transform: scale(1.1) rotate(5deg);
}