/* Contact page — bilingual layout (LTR + RTL) */

#contact-area .contact-page-row {
    display: flex;
    flex-wrap: wrap;
}

#contact-area .contact-map-wrap {
    min-height: 450px;
    background: #f4f7fa;
}

#contact-area .contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

#contact-area .contact-map-fallback {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: #7a8a99;
}

#contact-area .contact-details-card {
    height: 100%;
    padding: 28px 24px;
    background: #fff;
}

#contact-area .contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

#contact-area .contact-details-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

#contact-area .contact-details-item__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(101, 131, 163, 0.1);
    color: #6583a3;
    font-size: 20px;
}

#contact-area .contact-details-item__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#contact-area .contact-details-item__label {
    font-size: 14px;
    font-weight: 600;
    color: #35801d;
    line-height: 1.4;
}

#contact-area .contact-details-item__value {
    font-size: 15px;
    font-weight: 400;
    color: #3c3f42;
    line-height: 1.6;
    text-decoration: none;
    word-break: break-word;
}

#contact-area a.contact-details-item__value:hover {
    color: #6583a3;
}

/* RTL: keep icon beside label/value, swap map/info columns */
[dir='rtl'] #contact-area .contact-page-map {
    order: 2;
}

[dir='rtl'] #contact-area .contact-page-info {
    order: 1;
}

[dir='rtl'] #contact-area .contact-details-item {
    flex-direction: row;
}

[dir='rtl'] #contact-area .contact-details-item__body {
    text-align: right;
}

[dir='rtl'] #contact-area .section-head {
    text-align: right;
}

[dir='ltr'] #contact-area .contact-details-item__body {
    text-align: left;
}

@media (max-width: 991px) {
    [dir='rtl'] #contact-area .contact-page-map,
    [dir='rtl'] #contact-area .contact-page-info {
        order: unset;
    }

    #contact-area .contact-map-wrap iframe,
    #contact-area .contact-map-wrap,
    #contact-area .contact-map-fallback {
        min-height: 320px;
        height: 320px;
    }

    #contact-area .contact-details-card {
        margin-top: 16px;
    }
}
