/* Contact page — scoped under .contact-page (simpliTrain v2) */
.contact-page .contact-wrap {
    max-width: 960px;
    margin: 24px auto 60px;
    padding: 0 24px 60px;
}

.contact-page .contact-heading {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 48px;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 640px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-page .contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 36px 24px 32px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
    transition: box-shadow .18s, transform .18s;
}

.contact-page .contact-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.contact-page .contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-page .contact-card__icon--phone {
    background: #ede9fe;
    color: #7c3aed;
}

.contact-page .contact-card__icon--email {
    background: #dbeafe;
    color: #1d4ed8;
}

.contact-page .contact-card__icon--skype {
    background: #e0f2fe;
    color: #0369a1;
}

.contact-page .contact-card__value {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.contact-page .contact-card__value a {
    color: #4F46E5;
    text-decoration: none;
}

.contact-page .contact-card__value a:hover {
    text-decoration: underline;
}

.contact-page .contact-card__label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.contact-page .contact-note {
    margin-top: 48px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-page .contact-note__icon {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-page .contact-note__text {
    font-size: 13px;
    color: #166534;
    line-height: 1.6;
}

.contact-page .contact-note__text strong {
    font-weight: 600;
}

[dir="rtl"] .contact-page .contact-note {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-page .contact-note__text {
    text-align: right;
}
