/* Provizia Global Presence Elementor Pro */
.pgp-section,
.pgp-section * {
    box-sizing: border-box;
}

.pgp-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: transparent;
}

.pgp-header {
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: center;
}

.pgp-eyebrow {
    margin-bottom: 12px;
    color: #0f8b66;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.pgp-title {
    margin: 0;
    color: #07122f;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2.5px;
}

.pgp-description {
    max-width: 760px;
    margin: 26px auto 0;
    color: #536078;
    font-size: 18px;
    line-height: 1.6;
}

.pgp-content {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(290px, 390px) minmax(0, 1fr);
    align-items: center;
    gap: 52px;
}

.pgp-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.pgp-card {
    appearance: none;
    width: 100%;
    min-height: 104px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 22px 20px 22px 24px;
    border: 0;
    border-bottom: 1px solid rgba(7, 18, 47, 0.1);
    border-radius: 18px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.pgp-card:hover,
.pgp-card.is-active {
    background: #c7c7c74a;
    box-shadow: 0 24px 50px rgba(20, 48, 70, 0.08);
}

.pgp-icon,
.pgp-popup-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eef2f6;
    color: #6f7f90;
    font-size: 14px;
    line-height: 1;
}

.pgp-icon svg,
.pgp-popup-icon svg {
    width: 42%;
    height: 42%;
    fill: currentColor;
}

.pgp-card.is-active .pgp-icon,
.pgp-popup-icon {
    background: #0f8b66;
    color: #fff;
}

.pgp-card-body {
    min-width: 0;
    display: block;
}

.pgp-card-title {
    display: block;
    margin: 0 0 6px;
    color: #07122f;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.pgp-card-text {
    display: block;
    color: #536078;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.pgp-arrow {
    color: #718094;
    font-size: 44px;
    line-height: 1;
    font-weight: 300;
}

.pgp-card.is-active .pgp-arrow {
    color: #0f8b66;
}

.pgp-map-area {
    width: 100%;
    min-width: 0;
    overflow: visible;
}

.pgp-map-wrap {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    overflow: visible;
    line-height: 0;
}

.pgp-map-img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    user-select: none;
    pointer-events: none;
}

.pgp-hotspot {
    position: absolute;
    z-index: 4;
    width: 22px;
    height: 22px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #cfdcd8;
    color: #fff;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: 0 2px 7px rgba(7, 18, 47, .15);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.pgp-hotspot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
}

.pgp-hotspot-icon svg,
.pgp-hotspot-icon i {
    width: 0;
    height: 0;
    font-size: 0;
    opacity: 0;
}

.pgp-hotspot::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: rgba(15,139,102,.16);
    opacity: 0;
    transform: scale(.65);
    transition: opacity .2s ease, transform .2s ease;
    z-index: -1;
}

.pgp-hotspot.is-active {
    background: #0f8b66;
    transform: translate(-50%, -50%) scale(1.14);
}

.pgp-hotspot.is-active::before {
    opacity: 1;
    transform: scale(1);
}

.pgp-popup {
    position: absolute;
    z-index: 6;
    width: 240px;
    min-height: 88px;
    display: none;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(7, 18, 47, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 45px rgba(7, 18, 47, 0.12);
    transform: translate(-10%, -50%);
}

.pgp-popup.is-active {
    display: flex;
	gap: 5px;
}

.pgp-popup-title {
    margin-bottom: 6px;
    color: #07122f;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.pgp-popup-text {
    color: #536078;
    font-size: 16px;
    line-height: 1.45;
}

.pgp-no-popup-desktop .pgp-popup {
    display: none !important;
}

@media (max-width: 1024px) {
    .pgp-content {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .pgp-map-area {
        order: 1;
    }

    .pgp-list {
        order: 2;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 78%);
        gap: 14px;
        overflow-x: auto;
        padding: 0 4px 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .pgp-list::-webkit-scrollbar {
        height: 4px;
    }

    .pgp-card {
        scroll-snap-align: start;
        min-height: 146px;
        border: 1px solid rgba(7, 18, 47, 0.08);
    }

    .pgp-popup {
        display: none !important;
    }

    .pgp-show-popup-mobile .pgp-popup.is-active {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .pgp-section {
        padding: 28px 0;
    }

    .pgp-header {
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .pgp-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .pgp-title {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .pgp-description {
        margin-top: 16px;
        font-size: 15px;
    }

    .pgp-map-wrap {
        height: 270px;
        min-height: 240px;
    }

    .pgp-content {
        gap: 16px;
    }

    .pgp-card {
        grid-template-columns: auto 1fr auto;
        min-height: 144px;
        padding: 22px 18px;
        gap: 16px;
        border-radius: 12px;
    }

    .pgp-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .pgp-card-title {
        font-size: 16px;
    }

    .pgp-card-text {
        font-size: 15px;
    }

    .pgp-arrow {
        font-size: 34px;
    }

    .pgp-hotspot {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }

    .pgp-hotspot::before {
        inset: -8px;
    }
}


/* v1.0.1 fixes: popup title only + accurate responsive hotspot positioning */
.pgp-popup .pgp-popup-text {
    display: none !important;
}

.pgp-popup {
    min-height: 52px;
    width: 240px;
    padding: 12px 22px;
    line-height: 1.2;
}

.pgp-popup-title {
    margin-bottom: 0;
}

.pgp-map-wrap {
    height: auto !important;
}

.pgp-map-img {
    object-fit: initial !important;
}

@media (max-width: 1024px) {
    .pgp-map-wrap {
        width: 100%;
        max-width: 100%;
        min-height: auto !important;
        height: auto !important;
    }

    .pgp-map-img {
        width: 100%;
        height: auto !important;
        object-fit: initial !important;
    }

    .pgp-hotspot {
        display: inline-flex !important;
        z-index: 10;
    }
}

@media (max-width: 767px) {
    .pgp-map-area {
        padding: 0 10px;
        overflow: visible;
    }

    .pgp-map-wrap {
        min-height: auto !important;
        height: auto !important;
    }

    .pgp-hotspot {
        width: 18px;
        height: 18px;
    }

    .pgp-hotspot.is-active {
        transform: translate(-50%, -50%) scale(1.18);
    }
}
