/* Homepage-spezifische Styles */

.world-map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 1.5rem;
    border: 1px solid rgba(13, 110, 253, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.world-map-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: grayscale(100%);
}

.map-point-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.map-point {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-point-core {
    width: 8px;
    height: 8px;
    background-color: #0d6efd;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px #0d6efd;
    position: relative;
    z-index: 2;
}

.map-point-pulse {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #0d6efd;
    border-radius: 50%;
    opacity: 0.6;
    animation: map-pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

@keyframes map-pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.map-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 20;
}

.map-point:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.service-item {
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.3) !important;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08) !important;
}

.icon-container {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15) !important;
}

.transition-all {
    transition: all 0.3s ease;
}
