

.contact-page {
    padding: 40px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: flex;
    gap: 30px;
}

/* نقشه */
.contact-map {
    flex: 2;
    height: 420px;
    margin-top: 50px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}
/* آدرس */
.contact-address {
    margin-top: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;

}

/* اطلاعات تماس */
.contact-info {
    flex: 1;
   margin-right: 30px;
}

.contact-info h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
}

.contact-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text .contact-label{
    color: #000000;
    font-size: 16px;
    font-weight: 700;


}
.contact-text {
    color: #000;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
     font-size: 16px;
    font-weight: 700;
}

/* رنگ آیکن‌ها */
.telegram i { background: #229ED9; }
.whatsapp i { background: #25D366; }
.instagram i { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.phone i { background: #2c7be5; }
.mobile i { background: #28a745; }


.contact-wrapper {
    display: flex;
    gap: 30px;
    flex-direction: row-reverse; /* 👈 این خط */
}
/* ریسپانسیو */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column-reverse; /* 👈 این */
    }
}
