/* Modern Contact Form Styles */
.modern-contact-form .form-floating {
    margin-bottom: 1.5rem;
}

.modern-contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.modern-contact-form .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
    background: white;
}

.modern-contact-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.modern-contact-form .form-select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

.modern-contact-form label {
    color: #64748b;
    font-weight: 500;
    padding-left: 0.5rem;
}

.message-textarea {
    min-height: 120px !important;
    resize: vertical;
}

.form-check {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.form-check-input:checked {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border: none;
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

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

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
