/* AG Map Block Styles */
.ag-map {
    --ag-map-accent: #FAB93A;
    --ag-map-blue-start: #2673B7;
    --ag-map-blue-end: #3192E8;
    --ag-map-font: 'Al-Jazeera-Arabic', sans-serif;

    padding: 80px 0;
    direction: rtl;
    color: white;
}

/* LTR Direction Modifier */
.ag-map--dir-ltr {
    direction: ltr;
}

.ag-map--dir-ltr .ag-map__header {
    text-align: left;
}

.ag-map--dir-ltr .ag-map__title::after {
    right: auto;
    left: 0;
}

.ag-map--dir-ltr .ag-map__footer {
    text-align: left;
}

.ag-map--dir-ltr .ag-map__footer-text {
    margin-right: auto;
    margin-left: 0;
}

.ag-map__container {
    max-width: 1093px;
    margin: 0 auto;
    padding: 0 20px;
}

.ag-map__header {
    margin-bottom: 40px;
    text-align: right;
}

.ag-map__title {
    font-family: var(--ag-map-font);
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.ag-map__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 199px;
    height: 1px;
    background-color: var(--ag-map-accent);
}

.ag-map__description {
    font-family: var(--ag-map-font);
    font-size: 24px;
    line-height: 1.5;
    margin-top: 20px;
    opacity: 0.9;
}

.ag-map__items {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.ag-map__item-label {
    font-family: var(--ag-map-font);
    font-size: 26px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ag-map__item-label::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--ag-map-accent);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.ag-map__item-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.ag-map__footer {
    text-align: right;
    margin-top: 40px;
}

.ag-map__footer-text {
    color: #EEB92A;
    font-family: var(--ag-map-font);
    font-size: 24px;
    margin-bottom: 30px;
    max-width: 650px;
    margin-right: 0;
    line-height: 1.4;
}

.ag-map__actions {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.ag-map__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    padding: 0 30px;
    border-radius: 10px;
    font-family: var(--ag-map-font);
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ag-map__btn--primary {
    background: linear-gradient(90deg, var(--ag-map-blue-start) 0%, var(--ag-map-blue-end) 100%);
    color: white;
}

.ag-map__btn--primary:hover {
    box-shadow: 0 5px 15px rgba(38, 115, 183, 0.4);
    transform: translateY(-2px);
}

.ag-map__btn--secondary {
    border: 1px solid var(--ag-map-accent);
    color: white;
}

.ag-map__btn--secondary:hover {
    background-color: var(--ag-map-accent);
    color: #121932;
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .ag-map__title {
        font-size: 30px;
    }

    .ag-map__title::after {
        width: 100px;
    }

    .ag-map__description,
    .ag-map__footer-text {
        font-size: 18px;
    }

    .ag-map__item-label {
        font-size: 20px;
    }

    .ag-map__actions {
        flex-direction: column;
    }

    .ag-map__btn {
        width: 100%;
    }
}