/* Contact Page */
.contact-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.contact-info-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}
.detail-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: box-shadow .3s;
}
.detail-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.detail-card i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}
.detail-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.detail-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.detail-card a { color: var(--primary); text-decoration: none; }
.detail-card a:hover { text-decoration: underline; }

.contact-form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group textarea {
    height: 120px;
    resize: vertical;
}
.contact-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
    margin-top: 8px;
}
.contact-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

.form-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
}
.form-message h3 { font-size: 18px; margin-bottom: 6px; }
.form-message-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.form-message-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-section { padding: 100px 0 60px; }
}
