/* ═══════════════════════════════════════
   CONTACT PAGE — Rebhni Design System v2
   ═══════════════════════════════════════ */

/* --- Contact Hero --- */
.contact-hero {
    padding-top: 100px;
    text-align: center;
}

/* --- Contact Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* --- Info Card --- */
.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
}

/* --- Info Items --- */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Social Links --- */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social a:hover {
    color: var(--teal-light);
    background: rgba(13, 148, 136, 0.12);
    border-color: rgba(13, 148, 136, 0.3);
    text-decoration: none;
}

/* --- Form Card --- */
.contact-form {
    /* Inherits .card dark styles from design system */
}

/* --- Textarea dark variant --- */
.contact-textarea {
    resize: vertical;
    min-height: 140px;
    /* Inherits .form-input dark styles */
}

/* --- Mobile: stack to single column --- */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding-top: 80px;
    }
}
