/* Contact Page Styles */
#contact {
    padding: 8rem 0 5rem;
    background-color: var(--bg-color);
}

.contact-content {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item span {
    color: var(--text-color);
}

.contact-form {
    flex: 1.5;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-medium);
    background-color: #f8fafc;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

button[type="submit"] {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 7rem 0 4rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
}