/* Estilos para el formulario de contacto */
.message-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.message-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.message-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.message-form .form-control:focus {
    border-color: var(--primaryColor, #D2691E);
    box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.15);
    background-color: #fff;
}

.message-form .form-control.is-valid {
    border-color: #28a745;
    background-color: #fff;
}

.message-form .form-control.is-invalid {
    border-color: #dc3545;
    background-color: #fff;
}

.message-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-orange {
    background: linear-gradient(135deg, #D2691E 0%, #FF6B35 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D2691E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
    color: white;
}

.btn-orange:active {
    transform: translateY(0);
}

.btn-orange.btn-loading {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-orange.btn-loading:hover {
    background: #6c757d;
    transform: none;
}

/* Mensajes de alerta personalizados */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Feedback de validación */
.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    animation: fadeInUp 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .message-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .btn-orange {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}