/* Contact Form Component Styles */
.form-group-enhanced {
    margin-bottom: 1.5rem;
}

.form-group-enhanced label {
    font-weight: 600;
    color: #2d2a44;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-group-enhanced label .required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group-enhanced .form-control {
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fc;
}

.form-group-enhanced .form-control:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    outline: none;
}

.form-group-enhanced textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.5rem;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-submit-enhanced:active {
    transform: translateY(0);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.invalid-feedback i {
    margin-right: 0.25rem;
}

