.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.truck-hero-gradient {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}

.service-card-hover:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.btn-truck-primary {
    background: linear-gradient(45deg, #EA580C, #DC2626);
    transition: all 0.3s ease;
}

.btn-truck-primary:hover {
    background: linear-gradient(45deg, #DC2626, #B91C1C);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    transition: transform 0.2s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Accessibility improvements */
.focus-visible:focus {
    outline: 2px solid #EA580C;
    outline-offset: 2px;
}

/* Form styling */
.form-input {
    border: 2px solid #E5E7EB;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #1E40AF;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #1E40AF;
    border-radius: 4px;
}

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