.contact-section {
    padding: 4rem 0 6rem 0;
    background: var(--bg-muted);
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Contact Info Side */
.contact-info-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.info-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.info-content h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-content p,
.info-content a {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.5;
}

.info-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Form Side */
.contact-form-wrapper {
    background: var(--white);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

.form-label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--text-primary);
    background: var(--bg-muted);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

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

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    font-size: var(--fs-sm);
    font-weight: 500;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.text-danger {
    color: #b91c1c;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}
.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-terms {
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.recaptcha-terms a {
    color: var(--text-muted);
    text-decoration: underline;
}
