/* JetTEAM Custom Overrides */
/* Additional styles can be added here without modifying the main style.css */

/* Animation classes */
.service-card,
.about-section,
.extra-mile-section,
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate-in,
.about-section.animate-in,
.extra-mile-section.animate-in,
.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Form message styles */
.form-message {
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 14px;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
