/* Home Page Styles */

/* Ẩn arrow mặc định của select trên tất cả browsers */
select[name="location_id"],
select[name="car_type"],
select[name="car_location_id"],
select[name="car_duration_id"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
}

/* Ẩn arrow trên IE/Edge */
select[name="location_id"]::-ms-expand,
select[name="car_type"]::-ms-expand,
select[name="car_location_id"]::-ms-expand,
select[name="car_duration_id"]::-ms-expand {
    display: none !important;
}

/* Slider dot transitions */
.location-dot,
.tour-dot,
.testimonial-dot,
.season-dot,
.highlight-dot {
    transition: all 0.3s ease;
}

/* Favorite button notification */
.favorite-notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slider smooth scroll */
#popular-locations-slider,
#best-selling-tours-slider,
#testimonials-slider,
#travel-seasons-slider,
#highlights-slider {
    scroll-behavior: smooth;
}

/* Filter transition */
.filter-tour,
.filter-car-rental {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
