/* 3D Turkey Map Styles */
.turkey-map-container {
    width: 100%;
    perspective: 1000px;
}

.turkey-map-scene {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.turkey-map-3d-static {
    width: 100%;
    max-width: 800px;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(20deg) rotateY(0deg);
    transition: transform 0.5s ease;
}

.turkey-map-3d-static:hover {
    transform: rotateX(15deg) rotateY(5deg) scale(1.05);
}

/* Turkey Shape */
.turkey-shape {
    width: 100%;
    height: 100%;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.turkey-svg {
    width: 100%;
    height: 100%;
}

.turkey-outline {
    transition: all 0.3s ease;
}

.turkey-map-3d-static:hover .turkey-outline {
    filter: brightness(1.2);
    stroke-width: 4;
}

/* City Markers */
.city-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.city-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    animation: markerFloat 3s ease-in-out infinite;
}

.city-marker:nth-child(2) {
    animation-delay: 0.5s;
}

.city-marker:nth-child(3) {
    animation-delay: 1s;
}

.city-marker:nth-child(4) {
    animation-delay: 1.5s;
}

.city-marker:nth-child(5) {
    animation-delay: 2s;
}

.city-marker:nth-child(6) {
    animation-delay: 2.5s;
}

.marker-pin {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
    margin: 0 auto 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pinPulse 2s ease-in-out infinite;
}

.marker-pin.primary {
    background: radial-gradient(circle, #ff3b3b 0%, #c41e3a 100%);
    width: 28px;
    height: 28px;
    box-shadow: 0 0 25px rgba(255, 59, 59, 0.8),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.marker-pin.secondary {
    background: radial-gradient(circle, #64ffda 0%, #4a90e2 100%);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.marker-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: rippleEffect 2s ease-out infinite;
}

.marker-pin.primary::before {
    border: 2px solid rgba(255, 59, 59, 0.6);
}

.marker-pin.secondary::before {
    border: 2px solid rgba(100, 255, 218, 0.6);
}

.marker-label {
    background: rgba(10, 25, 47, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.marker-label span {
    font-size: 9px;
    font-weight: 500;
    opacity: 0.8;
}

.map-info-text {
    text-align: center;
    margin-top: 20px;
}

.map-info-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-info-text i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Animations */
@keyframes markerFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
}

@keyframes pinPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes rippleEffect {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .turkey-map-scene {
        height: 400px;
    }

    .marker-label {
        font-size: 10px;
        padding: 4px 8px;
    }

    .marker-label span {
        font-size: 8px;
    }

    .marker-pin {
        width: 20px;
        height: 20px;
    }

    .marker-pin.primary {
        width: 24px;
        height: 24px;
    }
}