/* Contact Form Styles */
.contact-form {
    position: relative;
}

.contact-form .form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.success-message {
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.success-message i {
    margin-right: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}