/* World Map Container */
.sanjeev-world-map-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 20px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 50%, #fef3c7 100%);
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
    /* Make the map colorful instead of plain black */
    filter: sepia(0.3) hue-rotate(180deg) saturate(1.5) brightness(0.85) contrast(1.1);
}

/* Pin Links — no pointer changes on children */
.pin-link {
    cursor: pointer;
    text-decoration: none;
}

/* Outer Glow Ring — always visible, bigger */
.pin-glow {
    opacity: 0.25;
    /* NO animation, NO transform — completely static */
}

/* Inner Solid Dot — always visible */
.pin-dot {
    stroke: #ffffff;
    stroke-width: 3;
    /* NO animation, NO transform — completely static */
}

/* ===================== */
/* Per-Country Colors    */
/* ===================== */

/* USA - Vivid Blue */
.pin-glow-usa {
    fill: #3b82f6;
}

.pin-dot-usa {
    fill: #3b82f6;
}

/* Canada - Crimson Red */
.pin-glow-canada {
    fill: #ef4444;
}

.pin-dot-canada {
    fill: #ef4444;
}

/* UK - Royal Amber */
.pin-glow-uk {
    fill: #f59e0b;
}

.pin-dot-uk {
    fill: #f59e0b;
}

/* Ireland - Emerald Green */
.pin-glow-ireland {
    fill: #10b981;
}

.pin-dot-ireland {
    fill: #10b981;
}

/* Germany - Deep Purple */
.pin-glow-germany {
    fill: #8b5cf6;
}

.pin-dot-germany {
    fill: #8b5cf6;
}

/* Australia - Golden Yellow */
.pin-glow-australia {
    fill: #f59e0b;
}

.pin-dot-australia {
    fill: #f59e0b;
}

/* New Zealand - Ocean Teal */
.pin-glow-nz {
    fill: #06b6d4;
}

.pin-dot-nz {
    fill: #06b6d4;
}

/* ===================== */
/* Hover — COLOR ONLY    */
/* NO transforms at all  */
/* ===================== */
.pin-link:hover .pin-glow {
    opacity: 0.45;
}

.pin-link:hover .pin-dot {
    fill: #ffffff;
    stroke-width: 4;
}

/* Pin Labels */
.pin-label {
    fill: #1e293b;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Jost', sans-serif;
    text-anchor: middle;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pin-link:hover .pin-label {
    opacity: 1;
}

/* Instructions */
.map-instructions {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.map-instructions p {
    color: #475569;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .sanjeev-world-map-container {
        padding: 20px 15px;
    }

    .pin-label {
        font-size: 16px;
        opacity: 1;
    }

    .map-instructions p {
        font-size: 14px;
    }
}