.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    background-color: #f1f5f9;
    border-radius: 16px;
    cursor: grab;
}

.map-transform {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    will-change: transform;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

.location-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
    transition: transform 0.3s ease;
}

.marker-pin {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.location-marker:hover .marker-pin {
    transform: scale(1.2);
    background: #e0b15e;
}

.marker-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #132946;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    pointer-events: none;
}

.location-marker:hover .marker-label {
    opacity: 1;
}

.country-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.city-tab {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-tab.active {
    background: var(--color-primary);
    color: white;
}

.city-tab:hover:not(.active) {
    background: #f1f5f9;
}

.info-card {
    border-left: 3px solid var(--color-primary);
}