.hotspot-map-wrapper {
    width: 100%;
    position: relative;
}

.hotspot-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
}

.hotspot-item {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-point {
    width: 14px;
    height: 14px;
    background-color: #a855f7;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.hotspot-item:hover .hotspot-point {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

/* Animasyon */
.hotspot-item.animated .hotspot-point {
    animation: pulse 2s ease-in-out infinite;
}

.hotspot-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid #a855f7;
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

/* Tooltip */
.hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e293b;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1e293b;
}

.hotspot-item:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 20px);
}

.tooltip-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.tooltip-description {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hotspot-map-container {
        height: 300px;
    }
    
    .hotspot-point {
        width: 12px;
        height: 12px;
    }
    
    .hotspot-tooltip {
        font-size: 12px;
        padding: 8px 12px;
    }
}
