/* ── Emkay Global Map ── */

.emkay-map-section {
    padding: 64px 64px;
    color: #e8e8dc;
    overflow: visible;
}

.emkay-map-title {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 16px;
    color: #c5c5b5;
    font-family: inherit;
}

.emkay-map-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #c0c0b0;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emkay-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.emkay-legend-divider {
    color: #6a8a6a;
}

.emkay-map-wrap {
    position: relative;
    overflow: visible;
    border-radius: 8px;
}

.emkay-map-inner {
    position: relative;
    transition: transform 0.4s ease;
    transform-origin: center center;
    overflow: hidden;
}

.emkay-map-img {
    width: 100%;
    display: block;
}

/* ── Pins ── */
.emkay-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.emkay-pin-svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Dot wrapper — holds pulse + solid dot centered */
.emkay-pin-dot-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-top: 0px;
}

/* Pulse circle — behind dot */
.emkay-pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    opacity: 0.15;
    transform: translate(-50%, -50%);
    animation: emkayPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes emkayPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.03;
    }
}

/* Solid dot */
.emkay-pin-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    z-index: 1;
    flex-shrink: 0;
}

.emkay-pin-label {
    font-size: 13px;
    color: #c0d4c0;
    margin-top: 4px;
    white-space: nowrap;
    pointer-events: none;
}

/* ── Info Cards — Desktop overlay ── */
.emkay-card-overlay {
    position: absolute;
    max-width: 220px;
    z-index: 2;
    transition: opacity 0.3s;
}

.emkay-card-bottom-left {
    left: 3%;
    bottom: 8%;
}

.emkay-card-top-right {
    right: 3%;
    top: 8%;
}

.emkay-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #e8e8dc;
}

.emkay-info-card p {
    font-size: 13px;
    color: #a0b8a0;
    margin: 0;
    line-height: 1.5;
}

.emkay-card-mobile-top,
.emkay-card-mobile-bottom {
    display: none;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .emkay-map-section {
        padding: 8px 16px 24px;
    }

    .emkay-map-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .emkay-map-legend {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .emkay-card-overlay {
        display: none;
    }

    .emkay-card-mobile-top,
    .emkay-card-mobile-bottom {
        display: block;
    }

    .emkay-card-mobile-top {
        margin-bottom: 16px;
    }

    .emkay-card-mobile-bottom {
        margin-top: 16px;
    }

    .emkay-hide-mobile {
        display: none !important;
    }

    .emkay-pin-label {
        font-size: 11px;
    }

    .emkay-pin-svg {
        width: 20px;
        height: 20px;
    }
}
