/* Custom Card Hover Animations */
.tour-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tour-card img {
    transition: transform 0.5s ease;
}

.tour-card:hover img {
    transform: scale(1.05);
}

/* Aktif state untuk tombol filter */
.filter-btn.active {
    background-color: #DA3231 !important;
    color: white !important;
}