/* Custom styles for DriveSure */

/* Smooth transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

/* Mobile menu animations */
.mobile-menu {
    transition: all 0.3s ease-in-out;
    transform-origin: top;
}

.mobile-menu.hidden {
    display: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3B82F6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1E40AF;
}

/* Vehicle card hover effects */
.vehicle-card {
    transition: transform 0.3s ease-in-out;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

/* Button hover effects */
.btn-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Form input focus effects */
.form-input:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}