.location-info {
    background-color: #F4F4F4;
    color: #047;
}

/* location-map-large {

} */

.location-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 47px;
    font-family: 'Amiri Quran', serif;
}

.location-slogan {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
}

.btn-get-directions {
    background: #047;
    color: #fff;
    font-family: var(--font-main);
    border-radius: 2rem;
    font-weight: 500;
    font-size: 11px;
    border: none;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    transition: background 0.2s, color 0.2s;
    pointer-events: auto;
    letter-spacing: 0.15em;
}

.btn-get-directions:hover,
.btn-get-directions:focus {
    background: #169;
    color: #fff;
}

.location-map-large .big-map-marker {
    position: absolute;
    top: 48%;
    left: 52%;
    width: 28px;
    height: 28px;
    background: red;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.location-map-large .big-map-marker-description {
    position: absolute;
    top: 56%;
    left: 63%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: red;
}

.location-map-small .small-map-marker {
    position: absolute;
    top: 45%;
    left: 32%;
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Mobile Version Styles */
@media (max-width: 991.98px) {
    .location-title-mobile {
        font-size: 32px;
        letter-spacing: 0.15em;
        margin-bottom: 1rem !important;
    }

    .location-slogan-mobile {
        font-size: 14px;
        margin-bottom: 1rem !important;
        text-align: center;
    }

    .location-desc-mobile {
        text-align: center;
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .btn-get-directions-mobile {
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 10px;
    }

    .location-map-large-mobile img {
        width: 100%;
        height: auto;
    }

    .location-map-large-mobile .big-map-marker-mobile,
    .location-map-large .big-map-marker-mobile {
        width: 20px !important;
        height: 20px !important;
        top: 48% !important;
        left: 52% !important;
        z-index: 2 !important;
    }

    .location-map-large-mobile .big-map-marker-description-mobile,
    .location-map-large .big-map-marker-description-mobile {
        position: absolute !important;
        font-size: 10px !important;
        top: 62% !important;
        left: 63% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 3 !important;
    }

    .location-map-small-mobile {
        margin-top: 1rem;
    }

    .location-map-small-mobile img {
        width: 100%;
        height: auto;
    }

    .small-map-marker-mobile {
        width: 8px;
        height: 8px;
        top: 45%;
        left: 32%;
    }
}