/* Container Overlay */
.loading-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-container { text-align: center; }

/* Animasi Mobil Hiace Sederhana */
.hiace-car {
    width: 100px;
    height: 40px;
    background: #007bff; /* Warna Mobil */
    border-radius: 10px 30px 5px 5px;
    position: relative;
    margin: 0 auto 20px;
    animation: drive 1.5s infinite linear;
}

/* Roda */
.wheel {
    width: 15px; height: 15px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    bottom: -7px;
    border: 2px solid #fff;
    animation: spin 0.5s infinite linear;
}
.front { right: 15px; }
.back { left: 15px; }

/* Keyframes Animasi */
@keyframes drive {
    0% { transform: translateX(-10px) translateY(0); }
    50% { transform: translateX(10px) translateY(-3px); } /* Efek jalan bergelombang */
    100% { transform: translateX(-10px) translateY(0); }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}