/* Contact Form Section */
.contact-form-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form-left {
    padding-right: 2rem;
}

.contact-form-left h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 500;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.contact-form-left p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-form-left .social-links {
    justify-content: flex-start;
    margin-top: 2rem;
}

.contact-info {
    margin-top: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.contact-info-item:hover {
    opacity: 0.6;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
}

.contact-form-right {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group textarea {
    border-radius: 25px;
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .contact-form-left {
        padding-right: 0;
    }

    .contact-form-right {
        padding: 2rem;
    }
}
