/* THE ULTIMATE ALIGNMENT FIX */

/* Clear any possible Elementor parent padding/margin */
.elementor-widget-container,
.elementor-column-wrap,
.elementor-widget-shortcode {
    padding: 0 !important;
    margin: 0 !important;
}

#global-globe-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 600px;
    margin: 0 auto !important;
    padding: 0 !important;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: visible !important;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

#globe-viz {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    display: block !important;
}

/* PERMANENT PIN STYLING */
.location-marker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    z-index: 1000 !important;
    transform-origin: center bottom;
}

.location-marker {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #00d2ff;
    background-size: cover;
    background-position: center;
    background-color: #333;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.9), inset 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.location-label {
    margin-top: 8px;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 0 5px #000, 0 0 10px #000;
    background: rgba(0, 0, 0, 0.85);
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(0, 210, 255, 0.6);
    backdrop-filter: blur(4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.location-marker-container:hover .location-marker {
    transform: scale(1.2) translateY(-5px);
    border-color: #fff;
    box-shadow: 0 0 30px #fff;
}

/* TOOLTIP popup */
.globe-tooltip {
    position: absolute;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #00d2ff;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    width: 300px;
    backdrop-filter: blur(20px);
    pointer-events: none;
    z-index: 99999 !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -100%);
    margin-top: -30px;
}

.globe-tooltip img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}