/* ── Contact Page ────────────────────────────────────────────── */

.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

/* ── Left: Contact Info ──────────────────────────────────────── */
@keyframes contact-info-enter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #fff;
    background: var(--brand-slate-gray, #68717A);
    padding: 32px;
    border-radius: var(--radius-md, 8px);
    animation: contact-info-enter 0.6s ease-out both;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}

.contact-info h2:not(:first-child) {
    margin-top: 32px;
}

.contact-info p {
    margin: 0 0 8px;
}

.contact-info strong {
    font-weight: 700;
}

/* ── Right: Contact Form ─────────────────────────────────────── */
.contact-form-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 28px;
    color: #111;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #222;
}

.contact-field .req {
    color: #c00;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 9px 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #222;
    background: #fff;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #888;
}

.contact-field textarea {
    resize: vertical;
}

.contact-submit {
    align-self: flex-start;
    padding: 10px 30px;
    background: #fff;
    color: #222;
    border: 1px solid #999;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.contact-submit:hover {
    background: #f0f0f0;
    border-color: #666;
}

.contact-success {
    background: #f0faf2;
    border: 1px solid #b6dfc0;
    border-radius: 6px;
    padding: 18px 20px;
    color: #1a5c2a;
    font-size: 0.95rem;
}

.contact-error {
    background: #fff3f3;
    border: 1px solid #f5c0c0;
    border-radius: 6px;
    padding: 12px 16px;
    color: #8b0000;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
