/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid #e9ecef;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background: #fafbfc;
}

.form-control::placeholder {
    color: #6c757d;
    font-size: 14px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.contact-submit-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d7a 100%);
    transform: translateY(-1px);
}

.form-note {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

/* Validation States */
.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-control:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .contact-form-card {
        padding: 24px 20px;
        margin: 0 16px;
    }
    
    .form-control {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .contact-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .contact-form-card {
        padding: 20px 16px;
        margin: 0 8px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-control {
        padding: 9px 12px;
        font-size: 13px;
    }
    
    .contact-submit-btn {
        font-size: 15px;
    }
    
    .form-note {
        font-size: 11px;
    }
}

/* Form Animation */
.form-group {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}