/* Contact Form Styles */
.contact-form-section {
    padding: 60px 0;
    background: #fff;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fcfcfc;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(217, 48, 37, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 48, 37, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 600;
}

.alert-success {
    background-color: #f0fff4;
    color: #276749;
    border: 1px solid #c6f6d5;
}

.alert-danger {
    background-color: #fff5f5;
    color: #9b2c2c;
    border: 1px solid #fed7d7;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .contact-form-header h2 {
        font-size: 26px;
    }
}