/* Modern Contact Form Styles */
.contact-form-modern {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-form-modern .form-group {
    margin-bottom: 24px;
}

.contact-form-modern label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form-modern .form-control {
    width: 100%;
    height: auto;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    outline: none;
    color: #111;
}

.contact-form-modern textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form-modern .form-control:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Placeholder fix just in case */
.contact-form-modern .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.contact-form-modern .submit-btn-wrapper {
    margin-top: 10px;
}

.contact-form-modern .btn-submit-modern {
    background-color: #2563EB;
    color: white;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
    width: auto;
}

.contact-form-modern .btn-submit-modern:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-form-modern {
        padding: 30px 20px;
    }
}