/* ===== CONTACT ===== */
.contact { background: var(--bg-secondary); min-height: auto; padding-bottom: 4rem; }

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    overflow: hidden;
}

/* --- LEFT COLUMN --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding: 4.5rem 4rem;
    border-right: 1px solid var(--border);
    background: var(--bg-card);
}
.contact-info h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-primary);
}
.contact-intro {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: -1rem;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem 1.8rem;
    transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}
.contact-icon-wrap {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 10px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon-wrap i { font-size: 1.7rem; color: #fff; }
.contact-card-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}
.contact-card a,
.contact-card span {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}
.contact-card a:hover { color: var(--accent); }

/* --- RIGHT COLUMN (form) --- */
.contact-wrapper form {
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.form-row { display: flex; gap: 2rem; }
.form-row .field { flex: 1; }
.field input, .field textarea {
    width: 100%;
    padding: 1.4rem 1.8rem;
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}
.field input:focus, .field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.field textarea { min-height: 13rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }

/* responsive */
@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 3rem 2.5rem;
    }
    .contact-wrapper form { padding: 3rem 2.5rem; }
    .form-row { flex-direction: column; gap: 2rem; }
}

.contact-card {
    padding: 1rem 1.4rem;      
    gap: 1.2rem;
}
 
.contact-icon-wrap {
    width: 3.6rem;             
    height: 3.6rem;
    font-size: 1.4rem;
    flex-shrink: 0;
}
 
.contact-card-label {
    font-size: 1.1rem;        
    margin-bottom: 0.15rem;
}
 
.contact-card a,
.contact-card span {
    font-size: 1.3rem;         
}
 
@media (min-width: 768px) {
    .contact textarea {
        min-height: 24rem;
    }
}
@media (max-width: 767px) {
    .contact textarea {
        min-height: unset;
    }
}