.contact .section-head { margin-bottom: var(--s-10); }

.contact-grid{
    display:grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--s-6);
    align-items:start;
}

.contact-form{
    display:grid;
    gap: var(--s-6);
    padding: var(--s-8);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    box-shadow: var(--shadow);
}

.form-row{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-4);
}

.recaptcha-wrap{
    display:flex;
    justify-content:flex-start;
}

.contact-info{
    padding: var(--s-8);
}

.contact-info h3{
    margin-bottom: var(--s-4);
}

.info-list{
    display:grid;
    gap: var(--s-4);
}

.info-label{
    font-size: 0.9rem;
    color: var(--muted-2);
    margin-bottom: var(--s-1);
}

.info-value{
    color: var(--text);
    font-weight: 600;
}

.info-divider{
    height: 1px;
    background: var(--border);
    margin: var(--s-6) 0;
}

.social-row{
    display:flex;
    gap: var(--s-3);
    flex-wrap:wrap;
}

.social-btn{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition: transform 160ms ease, border-color 160ms ease;
}

.social-btn:hover{
    transform: translateY(-1px);
    border-color: rgba(93, 220, 255, 0.45);
}

.social-btn svg{
    width: 20px;
    height: 20px;
    fill: rgba(255,255,255,0.82);
}

@media (max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr; }
    .form-row{ grid-template-columns: 1fr; }
}

/* Form alert */
.form-alert {
    max-width: 720px;
    margin-bottom: var(--s-6);
    padding: var(--s-4);
    border-radius: 12px;
    border: 1px solid rgba(255, 99, 99, 0.45);
    background: rgba(255, 99, 99, 0.08);
    color: #ffb4b4;
    font-weight: 600;
}

/* Consent text */
.form-consent {
    font-size: 0.9rem;
    color: var(--muted-2);
    max-width: 520px;
}

.form-consent a {
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.form-consent a:hover {
    border-color: rgba(93, 220, 255, 0.6);
}
